We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e75cb commit de8fb20Copy full SHA for de8fb20
linux/massStorageCopy
@@ -41,7 +41,9 @@ bin_filepath=$1
41
if [ $2 == "-O" ]; then
42
shift 1
43
fi
44
-mountpoint_name=$2
+# Strip first and last ""
45
+mountpoint_name="${2%\"}"
46
+mountpoint_name="${mountpoint_name#\"}"
47
48
if [ -z $bin_filepath ]; then
49
echo "No binary file path provided!"
macosx/massStorageCopyMacOsX
0 commit comments