From b0989f87ac26f3d500c23669454f50dc5da527f7 Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Thu, 19 Oct 2017 12:10:56 -0700 Subject: [PATCH] install to local bin --- scripts/travis-consul.sh | 4 ++-- scripts/travis-vault.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/travis-consul.sh b/scripts/travis-consul.sh index 94027cac1..3ff914daa 100755 --- a/scripts/travis-consul.sh +++ b/scripts/travis-consul.sh @@ -15,8 +15,8 @@ function install_consul() { wget -q -O /tmp/consul.zip ${DOWNLOAD} unzip -d /tmp /tmp/consul.zip - mv /tmp/consul /usr/bin/consul - chmod +x /usr/bin/consul + mv /tmp/consul /usr/local/bin/consul + chmod +x /usr/local/bin/consul } install_consul diff --git a/scripts/travis-vault.sh b/scripts/travis-vault.sh index 6882c865e..0fd513466 100755 --- a/scripts/travis-vault.sh +++ b/scripts/travis-vault.sh @@ -15,8 +15,8 @@ function install_vault() { wget -q -O /tmp/vault.zip ${DOWNLOAD} unzip -d /tmp /tmp/vault.zip - mv /tmp/vault /usr/bin/vault - chmod +x /usr/bin/vault + mv /tmp/vault /usr/local/bin/vault + chmod +x /usr/local/bin/vault } install_vault