From 1430c43243275e2c7b13dc14f24c61a1e0bfa9e9 Mon Sep 17 00:00:00 2001 From: Casey Callendrello Date: Mon, 15 May 2017 16:45:58 +0200 Subject: [PATCH] Rename build script to avoid conflict with bazel --- .travis.yml | 4 ++-- build => build.sh | 0 test => test.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename build => build.sh (100%) rename test => test.sh (100%) diff --git a/.travis.yml b/.travis.yml index d0640b85..35dce0a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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