From 79b812d9761ec2bbb7b604a8a00a19f9ffaf3a25 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 4 Aug 2020 16:42:39 -0500 Subject: [PATCH] Fix log function locations in automation --- .automation/cleanup-docker.sh | 12 ++++++------ .automation/upload-docker.sh | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.automation/cleanup-docker.sh b/.automation/cleanup-docker.sh index 3115fa84..35e28878 100755 --- a/.automation/cleanup-docker.sh +++ b/.automation/cleanup-docker.sh @@ -13,12 +13,6 @@ # - System with Docker installed # - Global variables met -######################### -# Source Function Files # -######################### -# shellcheck source=/dev/null -source ../lib/log.sh # Source the function script(s) - ########### # Globals # ########### @@ -29,6 +23,12 @@ IMAGE_REPO="${IMAGE_REPO}" # Image repo to upload the image IMAGE_VERSION="${IMAGE_VERSION}" # Version to tag the image DOCKERFILE_PATH="${DOCKERFILE_PATH}" # Path to the Dockerfile to be uploaded +######################### +# Source Function Files # +######################### +# shellcheck source=/dev/null +source "${GITHUB_WORKSPACE}/lib/log.sh" # Source the function script(s) + ################################################################################ ############################ FUNCTIONS BELOW ################################### ################################################################################ diff --git a/.automation/upload-docker.sh b/.automation/upload-docker.sh index c31ffbde..9cb15ac9 100755 --- a/.automation/upload-docker.sh +++ b/.automation/upload-docker.sh @@ -14,12 +14,6 @@ # - System with Docker installed # - Global variables met -######################### -# Source Function Files # -######################### -# shellcheck source=/dev/null -source ../lib/log.sh # Source the function script(s) - ########### # Globals # ########### @@ -35,6 +29,12 @@ DOCKERFILE_PATH="${DOCKERFILE_PATH}" # Path to the Dockerfile to be uploaded MAJOR_TAG='' # Major tag version if we need to update it UPDATE_MAJOR_TAG=0 # Flag to deploy the major tag version as well +######################### +# Source Function Files # +######################### +# shellcheck source=/dev/null +source "${GITHUB_WORKSPACE}/lib/log.sh" # Source the function script(s) + ################################################################################ ############################ FUNCTIONS BELOW ################################### ################################################################################