Skip to content

Commit 4afa259

Browse files
committed
Remove runCommand call
1 parent 5c995e0 commit 4afa259

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -eu
55
source "${SCRIPTDIR}/../lib/util.sh"
66

77
echo "Building Docker image..."
8-
runCommand "docker build -t $IMAGE_NAME -f docker/Dockerfile ." || exit $?
8+
docker build -t ${IMAGE_NAME} -f docker/Dockerfile . || exit $?

bin/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [[ -n "$DOCKER_USERNAME" ]] && [[ -n "$DOCKER_PASSWORD" ]]; then
2323
fi
2424

2525
echo "Pushing image $IMAGE_NAME:$TRAVIS_BRANCH"
26-
docker tag ${IMAGE_ID} ${DOCKER_REPO}
26+
#docker tag ${IMAGE_ID} ${DOCKER_REPO}
2727
docker tag ${IMAGE_ID} ${DOCKER_REPO}:${TRAVIS_BUILD_NUMBER}
2828
#docker push ${DOCKER_REPO}
2929
docker push ${DOCKER_REPO}:${TRAVIS_BUILD_NUMBER}

0 commit comments

Comments
 (0)