diff options
author | Zac Pullar-Strecker <zacps@users.noreply.github.com> | 2019-02-03 01:00:29 +1300 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-02-02 12:00:29 +0000 |
commit | 863d5581a6b9917a4000d59f449653eb1ddd6dee (patch) | |
tree | 37b19ea1182b22613fcaec05a10499245e7d92c1 /ci | |
parent | 3562f2c9aacb4b7cba8a61d95f4d325b6b5887c1 (diff) | |
download | alacritty-863d5581a6b9917a4000d59f449653eb1ddd6dee.tar.gz alacritty-863d5581a6b9917a4000d59f449653eb1ddd6dee.zip |
Document that alacritty requires winpty-agent on windows
To make things easier to understand for Windows users, the
relationship between Alacritty and the WinPTY agent has been
clarified in the documentation.
This also bundles the windows agent and exe together in a zip file to
make distribution for windows easier on the user.
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/before_deploy.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 447ba2c9..62b5bc2e 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -54,8 +54,9 @@ elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" == "i386" ]; then # Make sure all files can be uploaded without permission errors sudo chown -R $USER:$USER "./target" elif [ "$TRAVIS_OS_NAME" == "windows" ]; then - mv "./target/release/alacritty.exe" "./target/deploy/${name}.exe" - mv "./target/release/winpty-agent.exe" "./target/deploy/winpty-agent.exe" + choco install 7zip + 7z a -tzip "./target/deploy/${name}-windows.zip" "./target/release/alacritty.exe" \ + "./target/release/winpty-agent.exe" fi # Convert and add manpage if it changed |