Skip to content

Commit 2f8c842

Browse files
committed
fix(kubectl-trace): image build trigger should not stay in makeopts
Signed-off-by: Lorenzo Fontana <[email protected]>
1 parent 04e3299 commit 2f8c842

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/ci-build-image.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ make=$(command -v make)
55

66
makeopts=""
77
if [[ ! -z "$TRAVIS_PULL_REQUEST_BRANCH" ]]; then
8-
makeopts="-e GIT_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH image/build"
8+
makeopts="-e GIT_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH"
99
fi
1010

1111
$make $makeopts image/build

hack/ci-release-image.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docker=$(command -v docker)
99

1010
makeopts=""
1111
if [[ ! -z "$TRAVIS_PULL_REQUEST_BRANCH" ]]; then
12-
makeopts="-e GIT_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH image/build"
12+
makeopts="-e GIT_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH"
1313
fi
1414

1515
if [[ ! -z "$QUAY_TOKEN" ]]; then

0 commit comments

Comments
 (0)