Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Scripts/install-uvtools.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/Scripts/install-uvtools.sh b/Scripts/install-uvtools.sh
index 4816e00..b75952e 100644
--- a/Scripts/install-uvtools.sh
+++ b/Scripts/install-uvtools.sh
@@ -59,18 +59,18 @@ if [ "${OSTYPE:0:6}" == "darwin" ]; then
if [ "$arch_name" == "arm64" ]; then
run_script="$HOME/Desktop/run-uvtools"
- echo "#!/bin/bash
-cd \"$(dirname \"\$0\")\"
+ echo '#!/bin/bash
+cd "$(dirname "$0")"'"
if [ -f \"$appPath/Contents/MacOS/UVtools.sh\" ]; then
bash \"$appPath/Contents/MacOS/UVtools.sh\" &
elif [ -f \"UVtools.app/Contents/MacOS/UVtools.sh\" ]; then
bash \"UVtools.app/Contents/MacOS/UVtools.sh\" &
else
- echo Error: UVtools.app not found on known paths
+ echo 'Error: UVtools.app not found on known paths'
exit -1
fi
-echo \"You can now close this terminal window.\"
+echo 'You can now close this terminal window.'
" > "$run_script"
chmod a+x "$run_script"