From aa44a1dc31663371f6aa7a762c491fcad2f698c5 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Thu, 20 Feb 2020 23:25:28 -0500 Subject: [PATCH] Moved some files around. --- .travis.yml | 4 ++-- default_config.toml => sample_configs/bottom.toml | 0 sample_config.toml => sample_configs/demo_config.toml | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename default_config.toml => sample_configs/bottom.toml (100%) rename sample_config.toml => sample_configs/demo_config.toml (100%) diff --git a/.travis.yml b/.travis.yml index 77905ea4..236721f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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; diff --git a/default_config.toml b/sample_configs/bottom.toml similarity index 100% rename from default_config.toml rename to sample_configs/bottom.toml diff --git a/sample_config.toml b/sample_configs/demo_config.toml similarity index 100% rename from sample_config.toml rename to sample_configs/demo_config.toml