REO progress

This commit is contained in:
rusefi 2020-08-15 11:58:08 -04:00
parent d633b76f41
commit 966153a5b7
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
dfu_file=$(ls *dfu | head -1)
if [ -z "$dfu_file" ]
then
echo "No .dfu file(s) found"
exit 1
fi
echo Found ${dfu_file}
java -jar console/rusefi_console.jar reboot_dfu
java -jar console/rusefi_console.jar dfu ${dfu_file}