Skip to content

Commit 617cd99

Browse files
authored
Merge pull request #29 from fntlnz/fix/ci-image-build
fix(kubectl-trace): image build trigger should not stay in makeopts
2 parents 04e3299 + 2f8c842 commit 617cd99

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)