mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-26 15:14:13 +02:00
Fix travis config with missing .exe extension.
This commit is contained in:
parent
e8ce1d5b1e
commit
17a3fbc40e
@ -49,10 +49,10 @@ before_deploy:
|
|||||||
if [[ $TRAVIS_OS_NAME == "windows" ]]; then
|
if [[ $TRAVIS_OS_NAME == "windows" ]]; then
|
||||||
export TARGET=x86_64-pc-windows-msvc;
|
export TARGET=x86_64-pc-windows-msvc;
|
||||||
cargo build --release --target $TARGET;
|
cargo build --release --target $TARGET;
|
||||||
cp ./target/x86_64-pc-windows-msvc/release/btm btm;
|
cp ./target/x86_64-pc-windows-msvc/release/btm btm.exe;
|
||||||
strip btm;
|
strip btm.exe;
|
||||||
cp sample_configs/bottom.toml bottom.toml;
|
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
|
else
|
||||||
cargo build --release;
|
cargo build --release;
|
||||||
cp ./target/release/btm btm;
|
cp ./target/release/btm btm;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user