From: Vladimir Ulianitsky <47718845+uvlad7@users.noreply.github.com> Date: Tue, 17 Aug 2021 02:01:42 +0000 (+0300) Subject: Fix for PATH with spaces (#1060) X-Git-Tag: v1.0.51~6 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/commitdiff_plain/5c6d18fcd4b5a51460f431472539e8a468c48078?ds=sidebyside Fix for PATH with spaces (#1060) --- diff --git a/INSTALL/Ventoy2Disk.sh b/INSTALL/Ventoy2Disk.sh index 5b1d6f4..d8440d0 100644 --- a/INSTALL/Ventoy2Disk.sh +++ b/INSTALL/Ventoy2Disk.sh @@ -21,7 +21,7 @@ elif uname -m | egrep -q 'mips64'; then else export TOOLDIR=i386 fi -export PATH=./tool/$TOOLDIR:$PATH +export PATH="./tool/$TOOLDIR:$PATH" echo ''