Skip to content

Commit 53dc82d

Browse files
committed
Build both Stock and RO configs at once for now
1 parent cbc2542 commit 53dc82d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ all: configs
1010
release: zip
1111

1212
configs: $(CONFIG_DIR)/%.cfg
13-
cp $(CONFIG_DIR)/$(TRAVIS_BRANCH)/*.cfg GameData/TestFlight
13+
cp $(CONFIG_DIR)/RealismOverhaul/*.cfg GameData/TestFlight
14+
cp $(CONFIG_DIR)/Stock/*.cfg GameData/TestFlight
1415

1516
$(CONFIG_DIR)/%.cfg:
16-
cd $(CONFIG_DIR);python compileConfigs.py $(TRAVIS_BRANCH)
17+
cd $(CONFIG_DIR);python compileConfigs.py RealismOverhaul
18+
cd $(CONFIG_DIR);python compileConfigs.py Stock
1719

1820
zip: configs
1921
zip -r $(ZIPFILE) GameData
2022

2123
clean:
2224
-rm GameData/TestFlight/*.cfg
23-
-rm $(CONFIG_DIR)/$(TRAVIS_BRANCH)/*.cfg
25+
-rm $(CONFIG_DIR)/RealismOverhaul/*.cfg
26+
-rm $(CONFIG_DIR)/Stock/*.cfg
2427
-rm *.zip

0 commit comments

Comments
 (0)