Skip to content

Commit dd8aa99

Browse files
authored
Fix: Correct filename in release script from 'Flash Firmware.bat' to 'FlashFirmware.bat' (#8)
The build_release.sh script was attempting to copy 'Flash Firmware.bat' (with a space), but the actual filename is 'FlashFirmware.bat' (no space), causing the release pipeline to fail.
1 parent 611f636 commit dd8aa99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ mkdir -p "$OUTPUT_DIR/source"
7272

7373
# Copy flash tools (main method for users)
7474
echo "Copying flash tools..."
75-
cp "$SCRIPT_DIR/Flash Firmware.bat" "$OUTPUT_DIR/"
75+
cp "$SCRIPT_DIR/FlashFirmware.bat" "$OUTPUT_DIR/"
7676
cp "$SCRIPT_DIR/flash_firmware.ps1" "$OUTPUT_DIR/"
7777
chmod +x "$OUTPUT_DIR/flash_firmware.ps1"
7878

0 commit comments

Comments
 (0)