Skip to content

Commit bd6d3b5

Browse files
Fixed issue in linux maple_upload.sh caused by paths with spaces in them
1 parent eab149a commit bd6d3b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/linux/maple_upload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ $# -lt 4 ]; then
88
echo "Usage: $0 $# <dummy_port> <altID> <usbID> <binfile>" >&2
99
exit 1
1010
fi
11-
dummy_port=$1; altID=$2; usbID=$3; binfile=$4; dummy_port_fullpath="/dev/$1"
11+
dummy_port="$1"; altID="$2"; usbID="$3"; binfile="$4"; dummy_port_fullpath="/dev/$1"
1212
if [ $# -eq 5 ]; then
1313
dfuse_addr="--dfuse-address $5"
1414
else

0 commit comments

Comments
 (0)