Skip to content

Commit

Permalink
Update premake version used
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Aug 26, 2024
1 parent b526678 commit 2617027
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/install-premake5.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@ECHO OFF
SETLOCAL

SET PREMAKE_VERSION=5.0.0-alpha14
SET PREMAKE_VERSION=5.0.0-beta2

CALL "%~DP0cmd/download.bat" ^
https://github.com/premake/premake-core/releases/download/v%PREMAKE_VERSION%/premake-%PREMAKE_VERSION%-windows.zip premake.zip
Expand Down
12 changes: 6 additions & 6 deletions scripts/install-premake5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ set -euxo pipefail
TRAVIS_OS_NAME=${1:-$TRAVIS_OS_NAME}

if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-windows.zip
unzip -uo premake-5.0.0-alpha14-windows.zip
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-windows.zip
unzip -uo premake-5.0.0-beta2-windows.zip
fi
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-linux.tar.gz
tar xf premake-5.0.0-alpha14-linux.tar.gz
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz
tar xf premake-5.0.0-beta2-linux.tar.gz
fi
if [[ "$TRAVIS_OS_NAME" == "macosx" ]]; then
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-macosx.tar.gz
tar xf premake-5.0.0-alpha14-macosx.tar.gz
curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-macosx.tar.gz
tar xf premake-5.0.0-beta2-macosx.tar.gz
fi

0 comments on commit 2617027

Please sign in to comment.