Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
More small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
skrimix authored Apr 12, 2022
1 parent 82bb03b commit 4fd4e2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions onlineinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fi
echo "Removing quarantine attrs"
xattr -rd com.apple.quarantine "$TARGETPATH/Loader/"

echo -e "\nInstallation completed\nNow you can run the Loader from $TARGETPATH/Loader/"
echo -e "\nInstallation completed\nNow you can run the Loader from ${TARGETPATH}Loader/"
}

linux_install() {
Expand Down Expand Up @@ -120,15 +120,15 @@ while true; do
done

echo -e "\nDownloading latest release for Linux x64..."
curl --fail -L -O "https://github.com/skrimix/QLoaderFiles/releases/latest/download/linux-x64.zip"
curl --fail -L -O "https://github.com/skrimix/QLoaderFiles/releases/latest/download/linux-x64.tar.gz"
echo "Download complete"

echo "Installing"
if [ -d linux-x64 ]; then
rm -rf linux-x64
fi
unzip -q "linux-x64.zip"
rm "linux-x64.zip"
tar xf "linux-x64.tar.gz"
rm "linux-x64.tar.gz"
cp -rf "linux-x64/" "$TARGETPATH/Loader/"
rm -r "linux-x64"

Expand All @@ -149,7 +149,7 @@ if [ "$TRAILERS" = "1" ]; then
fi
fi

echo -e "\nInstallation completed\nNow you can run the Loader from $TARGETPATH/Loader/"
echo -e "\nInstallation completed\nNow you can run the Loader from ${TARGETPATH}Loader/"
}


Expand Down

0 comments on commit 4fd4e2e

Please sign in to comment.