mirror of https://github.com/rusefi/rusefi-1.git
11 lines
276 B
Bash
Executable File
11 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm gen_live_documentation.log
|
|
|
|
java -DSystemOut.name=logs/gen_live_documentation \
|
|
-cp ../java_tools/ConfigDefinition.jar \
|
|
com.rusefi.ldmp.UsagesReader integration/LiveData.yaml
|
|
[ $? -eq 0 ] || { echo "ERROR generating"; exit 1; }
|
|
|
|
bash gen_output_channels.sh
|