summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-12-07 10:32:24 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-12-07 10:32:30 -0500
commit3f515afbb4cb3d22520729453bea5af050c0eb00 (patch)
tree6aa01feeaaaa0753810fccf62cdc21b3583f4967 /ci
parent30db03bb623318877bf74422e30766e2516e890e (diff)
Fix completion build.rs
Diffstat (limited to 'ci')
-rw-r--r--ci/before_deploy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index 39202448..27d24916 100644
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -16,11 +16,11 @@ mk_tarball() {
local out_dir=$(pwd)
local name="${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}"
mkdir "$td/$name"
+ mkdir "$td/$name/complete"
cp target/$TARGET/release/rg "$td/$name/"
cp {doc/rg.1,README.md,UNLICENSE,COPYING,LICENSE-MIT} "$td/$name/"
- cp target/release/build/ripgrep-*/out/rg.* "$td/$name/"
- cp target/release/build/ripgrep-*/out/_rg.* "$td/$name/"
+ cp target/release/build/ripgrep-*/out/{_rg,rg.bash-completion,rg.fish,_rg.ps1} "$td/$name/complete/"
pushd $td
tar czf "$out_dir/$name.tar.gz" *