From c0cd92fe89cae0da615f15fb58c3a641ff6dee5c Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 20 Aug 2017 22:32:02 +0100 Subject: [PATCH] Adds quotes around path, minor change to text output --- scripts/install_fw_custom.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install_fw_custom.sh b/scripts/install_fw_custom.sh index 26657a1..c99c44e 100755 --- a/scripts/install_fw_custom.sh +++ b/scripts/install_fw_custom.sh @@ -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