Moved some files around.

This commit is contained in:
ClementTsang 2020-02-20 23:25:28 -05:00
parent 0697d9dd56
commit aa44a1dc31
3 changed files with 2 additions and 2 deletions

View File

@ -51,13 +51,13 @@ before_deploy:
cargo build --release --target $TARGET;
cp ./target/x86_64-pc-windows-msvc/release/btm btm;
strip btm;
cp default_config.toml bottom.toml;
cp sample_configs/bottom.toml bottom.toml;
tar -czvf bottom_x86_64-pc-windows-msvc.tar.gz btm bottom.toml;
else
cargo build --release;
cp ./target/release/btm btm;
strip btm;
cp default_config.toml bottom.toml;
cp sample_configs/bottom.toml bottom.toml;
if [[ $TRAVIS_OS_NAME == "linux" ]]; then
tar -czvf bottom_x86_64-unknown-linux-gnu.tar.gz btm bottom.toml;
tar -czvf bottom_source_code.tar.gz ./src ./Cargo.toml LICENSE tests sample_config.toml bottom.toml;