Skip to content

Commit

Permalink
adding redirect command
Browse files Browse the repository at this point in the history
  • Loading branch information
hephaestus committed May 17, 2022
1 parent 570d082 commit de4b69a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bowlerstudio
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ testget () {
else
echo Downloading from https://www.azul.com/downloads/zulu/zulufx/
echo downloading https://cdn.azul.com/zulu/bin/$JVERELEASE.tar.gz
curl https://cdn.azul.com/zulu/bin/$JVERELEASE.tar.gz -o $2$1.tar.gz
curl -L https://cdn.azul.com/zulu/bin/$JVERELEASE.tar.gz -o $2$1.tar.gz
fi
}

Expand All @@ -38,7 +38,7 @@ if (! test -e $JVMDIR/$JVERELEASE.tar.gz) then
unzipifiy $JVERELEASE $JVMDIR
fi
if (! test -e $AUTOUPDATE) then
curl https://github.com/CommonWealthRobotics/LatestFromGithubLaunch/releases/latest/download/LatestFromGithubLaunch.jar -o $AUTOUPDATE
curl -L https://github.com/CommonWealthRobotics/LatestFromGithubLaunch/releases/latest/download/LatestFromGithubLaunch.jar -o $AUTOUPDATE
fi


Expand Down

0 comments on commit de4b69a

Please sign in to comment.