diff options
author | Christian Dürr <contact@christianduerr.com> | 2018-11-14 09:31:19 +0100 |
---|---|---|
committer | Christian Dürr <contact@christianduerr.com> | 2018-11-14 09:31:19 +0100 |
commit | 644f138e5e760f44f857f9d0fea418033b6a133b (patch) | |
tree | d28c8b78cbaafc335737ac3424246ef16be50210 | |
parent | 355190076a7644b3c14c0a1ccc39f56181f3e73d (diff) | |
download | alacritty-644f138e5e760f44f857f9d0fea418033b6a133b.tar.gz alacritty-644f138e5e760f44f857f9d0fea418033b6a133b.zip |
Fix i386 deb name
-rwxr-xr-x | ci/before_deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index caaa97c6..c5c6921c 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -52,7 +52,7 @@ elif [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu-i386 \ sh -c "cd /source && /root/.cargo/bin/cargo deb" sudo chown -R $USER:$USER "./target" - mv "./target/debian/*.deb" "./target/deploy/${name}_amd64.deb" + mv "./target/debian/*.deb" "./target/deploy/${name}_i386.deb" 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" |