Prechádzať zdrojové kódy

Only file we need to look at is this one.

Eric Helgeson 5 mesiacov pred
rodič
commit
2130ad66c1
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      utils/analyze_crashlog.sh

+ 1 - 1
utils/analyze_crashlog.sh

@@ -24,7 +24,7 @@ fwtime=$(grep 'FW Version' $logfile | tail -n 1 | egrep -o '[A-Z][a-z][a-z]\s+[0
 # Check if the firmware file is available locally
 echo "Searching for firmware compiled at $fwtime"
 scriptdir=$( dirname -- "${BASH_SOURCE[0]}" )
-fwfile=$(find $scriptdir/.. $2 -name '*.elf' -exec grep -q "$fwtime" {} \; -print -quit)
+fwfile=$(find $scriptdir/.. $2 -name 'firmware.elf' -exec grep -q "$fwtime" {} \; -print -quit)
 
 # Search Github for artifacts uploaded within few minutes of the compilation time
 if [ "x$fwfile" = "x" ]; then