Skip to content

Commit

Permalink
Adds quotes around path, minor change to text output
Browse files Browse the repository at this point in the history
  • Loading branch information
marrold committed Aug 20, 2017
1 parent ddec043 commit c0cd92f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install_fw_custom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ MAC_DEV_USB_SER="/dev/cu.usbmodem1441"
# Check if arguement is supplied for bin path. If not, use default.
if [ -z "$1" ]; then
BIN_PATH="../bin/outp.bin"
echo "No path to bin file supplied, using the default location."
echo "No path to bin file supplied, trying the default location."
else
BIN_PATH=$1
BIN_PATH="$1"
fi

# Check if bin file exists
Expand Down

0 comments on commit c0cd92f

Please sign in to comment.