summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-11-20 16:57:20 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-11-20 16:57:20 -0500
commit8d5906d7fcba073284ec82460c8daa04fb103a6b (patch)
tree24410f3746761a9073d3baacd5814de37e878f64
parentfeda38852eca77afc9ac467e537e787718991ea3 (diff)
another attempt to fix deploy
-rw-r--r--ci/before_deploy.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index 12af2a5c..608de599 100644
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -17,12 +17,12 @@ mk_tarball() {
local name="${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}"
mkdir "$td/$name"
- ls -l --recursive target/$TARGET/release
+ ls -l --recursive target/
cp target/$TARGET/release/rg "$td/$name/"
cp {doc/rg.1,README.md,UNLICENSE,COPYING,LICENSE-MIT} "$td/$name/"
- cp target/$TARGET/release/build/ripgrep-*/out/rg.* "$td/$name/"
- cp target/$TARGET/release/build/ripgrep-*/out/_rg.* "$td/$name/"
+ cp target/release/build/ripgrep-*/out/rg.* "$td/$name/"
+ cp target/release/build/ripgrep-*/out/_rg.* "$td/$name/"
pushd $td
tar czf "$out_dir/$name.tar.gz" *