Browse Source

Merge pull request #29121 from AkihiroSuda/fix-it-bundle

Fix bundle dir for integration-cli
Daniel Nephin 8 years ago
parent
commit
86faf137f9
2 changed files with 2 additions and 2 deletions
  1. 1 1
      hack/make/.integration-test-helpers
  2. 1 1
      hack/make/build-integration-test-binary

+ 1 - 1
hack/make/.integration-test-helpers

@@ -20,7 +20,7 @@ bundle_test_integration_cli() {
 go_test_dir() {
 go_test_dir() {
 	dir=$1
 	dir=$1
 	precompiled=$2
 	precompiled=$2
-	testbinary="$DEST/test.main"
+	testbinary="$ABS_DEST/test.main"
 	testcover=()
 	testcover=()
 	testcoverprofile=()
 	testcoverprofile=()
 	(
 	(

+ 1 - 1
hack/make/build-integration-test-binary

@@ -2,7 +2,7 @@
 set -e
 set -e
 
 
 rm -rf "$DEST"
 rm -rf "$DEST"
-DEST="$DEST/../test-integration-cli"
+DEST="$ABS_DEST/../test-integration-cli"
 
 
 if [ -z $DOCKER_INTEGRATION_TESTS_VERIFIED ]; then
 if [ -z $DOCKER_INTEGRATION_TESTS_VERIFIED ]; then
 	source ${MAKEDIR}/.integration-test-helpers
 	source ${MAKEDIR}/.integration-test-helpers