Rename build script to avoid conflict with bazel

It's difficult to include this repository using bazel, because
the file named "build" conflicts with new_go_repository generation
on case-insensitive filesystems (ref
https://github.com/bazelbuild/rules_go/issues/234). This change
renames the file to something that doesn't conflict, and also
renames the test script for consistency.
This commit is contained in:
Lincoln Stoll
2017-03-15 15:53:56 +11:00
parent 4f36e5994e
commit 1b9caefba5
4 changed files with 8 additions and 8 deletions

View File

@@ -38,9 +38,9 @@ install:
script:
- >
if [ "${TARGET}" == "amd64" ]; then
GOARCH="${TARGET}" ./test;
GOARCH="${TARGET}" ./test.sh;
else
GOARCH="${TARGET}" ./build;
GOARCH="${TARGET}" ./build.sh;
fi
notifications: