1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2024-11-22 03:43:49 +01:00

Actually execute before_deploy function

This commit is contained in:
Valentin Brandl 2018-07-15 20:58:08 +02:00
parent 33f9eedce1
commit cfda91af97
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -8,8 +8,8 @@ main() {
mkdir -p $deploy mkdir -p $deploy
test -f Cargo.lock || cargo generate-lockfile
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 $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-client $stage/bind9-api-client-${TRAVIS-TAG:1}-x86_64-musl
} }
main