From 1226ff0e8f3f6b5c0a542e888fb3c3c6f4fd6708 Mon Sep 17 00:00:00 2001 From: megatank58 Date: Wed, 19 Apr 2023 08:24:54 +0530 Subject: [PATCH] fix: do not update while installing --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 9e913b7..e67e42c 100755 --- a/install.sh +++ b/install.sh @@ -6,14 +6,14 @@ echo -e "${PREFIX}Downloading oxup" if [[ "$OSTYPE" == "linux-gnu"* ]]; then curl -LO https://github.com/oxidic/oxup/releases/latest/download/oxup chmod +x oxup - ./oxup setup + ./oxup setup -n elif [[ "$OSTYPE" == "darwin"* ]]; then curl -LO https://github.com/oxidic/oxup/releases/latest/download/oxup-darwin chmod +x oxup-darwin - ./oxup-darwin setup + ./oxup-darwin setup -n else curl -LO https://github.com/oxidic/oxup/releases/latest/download/oxup.exe - ./oxup.exe setup + ./oxup.exe setup -n fi if [[ $SHELL == *bash ]]; then