symlink generation for hex file with bootloader wasn't quite right. It added an extra output path

pull/873/head
Jesse Vincent 4 years ago
parent d76e32c367
commit 63fa886d9b
No known key found for this signature in database
GPG Key ID: CC228463465E40BC

@ -305,7 +305,7 @@ hex_with_bootloader () {
echo "Using ${BOOTLOADER_PATH}"
${MD5} "${BOOTLOADER_PATH}"
cat "${BOOTLOADER_PATH}" >> "${HEX_FILE_WITH_BOOTLOADER_PATH}"
ln -sf -- "${HEX_FILE_WITH_BOOTLOADER_PATH}" "${OUTPUT_PATH}/${SKETCH}-latest-with-bootloader.hex"
ln -sf -- "${OUTPUT_FILE_PREFIX}-with-bootloader.hex" "${OUTPUT_PATH}/${SKETCH}-latest-with-bootloader.hex"
cat <<- EOF
Combined firmware and bootloader are now at ${HEX_FILE_WITH_BOOTLOADER_PATH}

Loading…
Cancel
Save