From 6c3966415b76752247ff9fff63426669d8ea8aa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Tue, 10 Apr 2018 10:58:31 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20Additional=20build=20debug?= =?UTF-8?q?=20info?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-all.sh | 2 ++ build-branches.sh | 2 ++ build-latest.sh | 2 ++ build.sh | 2 ++ 4 files changed, 8 insertions(+) diff --git a/build-all.sh b/build-all.sh index aa06b71..9961f92 100755 --- a/build-all.sh +++ b/build-all.sh @@ -5,6 +5,8 @@ # Allowed: release, prerelease, branches, special # Default: undefined +echo "▶️ $0 $*" + ALL_BUILDS=("release" "prerelease" "branches" "special") BUILDS=("${BUILD:-"${ALL_BUILDS[@]}"}") diff --git a/build-branches.sh b/build-branches.sh index 1dd1131..36c55d7 100755 --- a/build-branches.sh +++ b/build-branches.sh @@ -1,6 +1,8 @@ #!/bin/bash # Builds develop, develop-* and master branches +echo "▶️ $0 $*" + ORIGINAL_GITHUB_REPO="digitalocean/netbox" GITHUB_REPO="${GITHUB_REPO-$ORIGINAL_GITHUB_REPO}" URL_RELEASES="https://api.github.com/repos/${GITHUB_REPO}/branches" diff --git a/build-latest.sh b/build-latest.sh index bebe554..e996251 100755 --- a/build-latest.sh +++ b/build-latest.sh @@ -1,6 +1,8 @@ #!/bin/bash # Builds the latest released version +echo "▶️ $0 $*" + ORIGINAL_GITHUB_REPO="digitalocean/netbox" GITHUB_REPO="${GITHUB_REPO-$ORIGINAL_GITHUB_REPO}" URL_RELEASES="https://api.github.com/repos/${GITHUB_REPO}/releases" diff --git a/build.sh b/build.sh index f28532a..ecd680d 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,8 @@ #!/bin/bash # Builds the Dockerfile[.variant] and injects tgz'ed Netbox code from Github +echo "▶️ $0 $*" + set -e if [ "${1}x" == "x" ] || [ "${1}" == "--help" ] || [ "${1}" == "-h" ]; then