"-skip" is probably not needed anymore

This commit is contained in:
rusefi 2020-05-23 19:39:04 -04:00
parent 5d39e3e088
commit 146f658026
3 changed files with 4 additions and 4 deletions

View File

@ -27,8 +27,8 @@ java -DSystemOut.name=gen_config ^
-c_fsio_names controllers\generated\fsio_names.def ^ -c_fsio_names controllers\generated\fsio_names.def ^
-c_fsio_strings controllers\generated\fsio_strings.def ^ -c_fsio_strings controllers\generated\fsio_strings.def ^
-java_destination ../java_console/models/src/com/rusefi/config/generated/Fields.java ^ -java_destination ../java_console/models/src/com/rusefi/config/generated/Fields.java ^
-romraider_destination ../java_console/rusefi.xml ^ -romraider_destination ../java_console/rusefi.xml
-skip build/config.gen
IF NOT ERRORLEVEL 0 echo ERROR generating IF NOT ERRORLEVEL 0 echo ERROR generating
IF NOT ERRORLEVEL 0 EXIT /B 1 IF NOT ERRORLEVEL 0 EXIT /B 1

View File

@ -34,8 +34,7 @@ java -DSystemOut.name=gen_config_board \
-ts_destination tunerstudio \ -ts_destination tunerstudio \
-ts_output_name rusefi_${BOARDNAME}.ini \ -ts_output_name rusefi_${BOARDNAME}.ini \
-prepend tunerstudio/${BOARDNAME}_prefix.txt \ -prepend tunerstudio/${BOARDNAME}_prefix.txt \
-prepend config/boards/${BOARDNAME}/prepend.txt \ -prepend config/boards/${BOARDNAME}/prepend.txt
-skip build/config.gen
[ $? -eq 0 ] || (echo "ERROR generating TunerStudio config for ${BOARDNAME}"; exit $?) [ $? -eq 0 ] || (echo "ERROR generating TunerStudio config for ${BOARDNAME}"; exit $?)

View File

@ -123,6 +123,7 @@ public class ConfigDefinition {
} else if (key.equals(KEY_PREPEND)) { } else if (key.equals(KEY_PREPEND)) {
prependFiles.add(args[i + 1]); prependFiles.add(args[i + 1]);
} else if (key.equals(KEY_SKIP)) { } else if (key.equals(KEY_SKIP)) {
// is this now not needed in light if LazyFile surving the same goal of not changing output unless needed?
skipRebuildFile = args[i + 1]; skipRebuildFile = args[i + 1];
} else if (key.equals("-ts_output_name")) { } else if (key.equals("-ts_output_name")) {
TSProjectConsumer.TS_FILE_OUTPUT_NAME = args[i + 1]; TSProjectConsumer.TS_FILE_OUTPUT_NAME = args[i + 1];