diff --git a/compile.sh b/compile.sh index 38aea3a..3bfaf56 100755 --- a/compile.sh +++ b/compile.sh @@ -260,15 +260,15 @@ then then outputName="$(realpath "$projectRoot/$buildPath/$outputName")"; outputFile="$outputName.axf"; - echo "The File Has Been Built to \"$outputFile\"."; + echo "Target Built: \"$outputFile\"."; pyocd list | { grep '^No available' && { - echo "Skpping flash." + echo "Skpping Flash." } || { pyocd flash --target stm32f439xi "$outputFile"; - handle_status $? "Flashing failed"; + handle_status $? "Flashing Failed"; }; }; else