Browse Source

Revert "I dont think there is a need to upload the elf"

This reverts commit c363491bc604621e9d5f3332150372196bbf0d74.
Eric Helgeson 2 years ago
parent
commit
5dca69f087
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/rename_binaries.sh

+ 1 - 1
utils/rename_binaries.sh

@@ -8,7 +8,7 @@ mkdir -p distrib
 DATE=$(date +%Y-%m-%d)
 VERSION=$(git describe --always)
 
-for file in $(ls .pio/build/*/*.bin .pio/build/*/*.uf2)
+for file in $(ls .pio/build/*/*.bin .pio/build/*/*.elf .pio/build/*/*.uf2)
 do
     NEWNAME=$(echo $file | sed 's|.pio/build/\([^/]*\)/\(.*\)\.\(.*\)|\1_'$DATE'_'$VERSION'.\3|')
     echo $file to distrib/$NEWNAME