From 5380fc2268a780a053025be4f55e068066c5f01d Mon Sep 17 00:00:00 2001 From: Ivan Date: Thu, 4 Apr 2019 14:54:53 +0200 Subject: [PATCH] Added debug to build scripts --- _build_static.sh | 2 +- build_static.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_build_static.sh b/_build_static.sh index 0c44fe68..6bc54670 100755 --- a/_build_static.sh +++ b/_build_static.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -e -x BUILD_DIR="_static_build" cargo build --target x86_64-alpine-linux-musl --release ${CARGO_ARGS} --features static,${FEATURES} diff --git a/build_static.sh b/build_static.sh index 2facc473..ca357017 100755 --- a/build_static.sh +++ b/build_static.sh @@ -1,5 +1,5 @@ #!/bin/bash - +set -e -x OPTS_ARGS="" if [[ -n "$FEATURES" ]]; then OPTS_ARGS=$OPTS_ARGS" -e FEATURES=$FEATURES"