summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-02-20 23:45:48 -0500
committerClementTsang <cjhtsang@uwaterloo.ca>2020-02-20 23:45:48 -0500
commit17a3fbc40ed72abf49b9358cdc4bb6ba4015bd67 (patch)
tree4fc0b8e3ebbed058409f943f57100ab3e0aef6b0
parente8ce1d5b1e57e4cd7e9047c89a5bb6e4b2bd2b70 (diff)
Fix travis config with missing .exe extension.
-rw-r--r--.travis.yml6
1 files 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;