From 3af4ccf2d2a5481731fdffa17bf63a68e8e2389e Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 21:38:11 +0200 Subject: [PATCH] Fix before_deploy script --- ci/before_deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 3d49089..44f03b8 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -3,13 +3,13 @@ set -ex main() { - local src=$(pwd) \ - stage=$src/deploy + local src=$(pwd) + local stage=$src/deploy - mkdir -p $deploy + mkdir -p $stage - cp target/x86_64-unknown-linux-musl/release/bind9-api $stage/bind9-api-${TRAVIS-TAG:1}-x86_64-musl - cp target/x86_64-unknown-linux-musl/release/bind9-api-client $stage/bind9-api-client-${TRAVIS-TAG:1}-x86_64-musl + cp target/x86_64-unknown-linux-musl/release/bind9-api $stage/bind9-api-${TRAVIS_TAG:1}-x86_64-musl + cp target/x86_64-unknown-linux-musl/release/bind9-api-client $stage/bind9-api-client-${TRAVIS_TAG:1}-x86_64-musl } main