From 17a3fbc40ed72abf49b9358cdc4bb6ba4015bd67 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Thu, 20 Feb 2020 23:45:48 -0500 Subject: Fix travis config with missing .exe extension. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 236721f0..cdbcc410 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,10 +49,10 @@ before_deploy: if [[ $TRAVIS_OS_NAME == "windows" ]]; then export TARGET=x86_64-pc-windows-msvc; cargo build --release --target $TARGET; - cp ./target/x86_64-pc-windows-msvc/release/btm btm; - strip btm; + cp ./target/x86_64-pc-windows-msvc/release/btm btm.exe; + strip btm.exe; cp sample_configs/bottom.toml bottom.toml; - tar -czvf bottom_x86_64-pc-windows-msvc.tar.gz btm bottom.toml; + tar -czvf bottom_x86_64-pc-windows-msvc.tar.gz btm.exe bottom.toml; else cargo build --release; cp ./target/release/btm btm; -- cgit v1.2.3