Skip to content

Commit

Permalink
fix: do not update while installing
Browse files Browse the repository at this point in the history
  • Loading branch information
megatank58 authored Apr 19, 2023
1 parent 0e73424 commit 1226ff0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1226ff0

Please sign in to comment.