From 808fc464a5b617de4c221ed8589de2ecb807e84a Mon Sep 17 00:00:00 2001 From: DCsunset Date: Sun, 2 Feb 2020 18:40:22 -0800 Subject: [PATCH] fix: fix versions.txt path --- hooks/build | 2 +- hooks/push | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/build b/hooks/build index 38f890d..bbb5bac 100644 --- a/hooks/build +++ b/hooks/build @@ -3,7 +3,7 @@ # original docker build command echo "overwriting docker build -f $DOCKERFILE_PATH -t $IMAGE_NAME ." -cat "../versions.txt" | while read VERSION +cat "versions.txt" | while read VERSION do # The new image tag will include the version of ubuntu IMAGE_TAG="${DOCKER_REPO}:${VERSION}" diff --git a/hooks/push b/hooks/push index 71bcdd9..b10c06d 100644 --- a/hooks/push +++ b/hooks/push @@ -3,7 +3,7 @@ # original docker push command echo "overwriting docker push $IMAGE_NAME" -cat "../versions.txt" | while read VERSION +cat "versions.txt" | while read VERSION do # The new image tag will include the version of ubuntu IMAGE_TAG="${DOCKER_REPO}:${VERSION}"