Rename build script to avoid conflict with bazel
authorCasey Callendrello <casey.callendrello@coreos.com>
Mon, 15 May 2017 14:45:58 +0000 (16:45 +0200)
committerCasey Callendrello <casey.callendrello@coreos.com>
Mon, 15 May 2017 14:45:58 +0000 (16:45 +0200)
.travis.yml
build.sh [moved from build with 100% similarity]
test.sh [moved from test with 100% similarity]

index d0640b8..35dce0a 100644 (file)
@@ -29,9 +29,9 @@ install:
 script:
  - |
    if [ "${TARGET}" == "amd64" ]; then
-     CNI_PATH="$(cd ../cni/bin && pwd)" GOARCH="${TARGET}" ./test
+     CNI_PATH="$(cd ../cni/bin && pwd)" GOARCH="${TARGET}" ./test.sh
    else
-     GOARCH="${TARGET}" ./build
+     GOARCH="${TARGET}" ./build.sh
    fi
 
 notifications:
diff --git a/build b/build.sh
similarity index 100%
rename from build
rename to build.sh
diff --git a/test b/test.sh
similarity index 100%
rename from test
rename to test.sh