diff options
author | Erik Berkun-Drevnig <erik.b22@gmail.com> | 2019-02-25 02:23:38 -0500 |
---|---|---|
committer | Erik Berkun-Drevnig <erik.b22@gmail.com> | 2019-02-25 02:23:38 -0500 |
commit | b5c239b5b9448fa4848e661e067241260225acc6 (patch) | |
tree | 06810464d95b12d7187314a8fe647429437d3301 /ci | |
parent | 080bab2cc4551659dbe086f7b936cc56f6eadb67 (diff) | |
download | alacritty-b5c239b5b9448fa4848e661e067241260225acc6.tar.gz alacritty-b5c239b5b9448fa4848e661e067241260225acc6.zip |
Run installer script in proper script
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/before_deploy.sh | 1 | ||||
-rwxr-xr-x | ci/script.sh | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 96f856e4..69ac5663 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -57,7 +57,6 @@ elif [ "$TRAVIS_OS_NAME" == "windows" ]; then choco install 7zip 7z a -tzip "./target/deploy/${name}-windows.zip" "./target/release/alacritty.exe" \ "./target/release/winpty-agent.exe" - ./wix/build.sh mv "./wix/alacritty.msi" "./target/deploy/${name}.msi" fi diff --git a/ci/script.sh b/ci/script.sh index c17bbbd2..c94e28f8 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -28,6 +28,7 @@ if [ "$TRAVIS_OS_NAME" == "windows" ]; then cp "./target/debug/winpty-agent.exe" "./target/debug/deps" fi cargo test -p winpty || error=true + ./wix/build.sh fi if [ $error == "true" ]; then |