diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2022-02-22 21:49:15 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2022-02-27 23:44:19 -0500 |
commit | cfdf36f989cadba458c733607476631043af27d0 (patch) | |
tree | 0deb69176215bd94dc7ff22b354a7e10ac1ed4e7 /ci | |
parent | 1327dbcf2a4273a8ba6fd978db5f0882530af94d (diff) | |
download | libgit2-cfdf36f989cadba458c733607476631043af27d0.tar.gz |
ci: rename build setup scripts
Rename our build setup scripts to include the `build` name so that we
can add additional CI setup scripts with no ambiguity.
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/setup-mingw-build.sh (renamed from ci/setup-mingw.sh) | 4 | ||||
-rwxr-xr-x | ci/setup-osx-build.sh (renamed from ci/setup-osx.sh) | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ci/setup-mingw.sh b/ci/setup-mingw-build.sh index f5a882d2b..3d72b24eb 100755 --- a/ci/setup-mingw.sh +++ b/ci/setup-mingw-build.sh @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -ex echo "##############################################################################" echo "## Downloading mingw" diff --git a/ci/setup-osx.sh b/ci/setup-osx-build.sh index 2e630eedb..0b95e7629 100755 --- a/ci/setup-osx.sh +++ b/ci/setup-osx-build.sh @@ -1,6 +1,6 @@ #!/bin/sh -set -x +set -ex brew update brew install pkgconfig zlib curl openssl libssh2 ninja |