We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c97db commit 504c1fcCopy full SHA for 504c1fc
BuildMod.bat
@@ -1,6 +1,16 @@
1
@echo off
2
setlocal EnableDelayedExpansion
3
set "args="
4
+if not exist options.txt (
5
+ echo includeExtraFiles=ask> OPTIONS.txt
6
+ echo rebuildMod=ask>> options.txt
7
+ echo combine=ask>> options.txt
8
+ echo copy=ask>> options.txt
9
+ echo updateMBINCompiler=ask>> options.txt
10
+ echo checkForConflicts=ask>> options.txt
11
+ echo recreatePakList=ask>> options.txt
12
+ echo|set /p="recreateMapFileTrees=ask">> options.txt
13
+)
14
for /f "tokens=1,2 delims==" %%G in (options.txt) do (
15
set "args=!args!-%%G %%~H "
16
)
0 commit comments