diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2019-01-27 23:26:50 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-28 18:34:28 (GMT) |
commit | c2160f2d1943d0b72a18e21300f98ef008e48696 (patch) | |
tree | dec079fcac6f4bc4b5480a601dce7d17fd010ec9 /ci/run-windows-build.sh | |
parent | 4096a98d79953d9749b81d2ecdcc600003d5c29a (diff) | |
download | git-c2160f2d1943d0b72a18e21300f98ef008e48696.zip git-c2160f2d1943d0b72a18e21300f98ef008e48696.tar.gz git-c2160f2d1943d0b72a18e21300f98ef008e48696.tar.bz2 |
ci: rename the library of common functions
The name is hard-coded to reflect that we use Travis CI for continuous
testing.
In the next commits, we will extend this to be able use Azure DevOps,
too.
So let's adjust the name to make it more generic.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ci/run-windows-build.sh')
-rwxr-xr-x | ci/run-windows-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run-windows-build.sh b/ci/run-windows-build.sh index d99a180..a73a4ec 100755 --- a/ci/run-windows-build.sh +++ b/ci/run-windows-build.sh @@ -6,7 +6,7 @@ # supported) and a commit hash. # -. ${0%/*}/lib-travisci.sh +. ${0%/*}/lib.sh test $# -ne 2 && echo "Unexpected number of parameters" && exit 1 test -z "$GFW_CI_TOKEN" && echo "GFW_CI_TOKEN not defined" && exit |