aboutsummaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-07-28 21:05:23 +0200
committerGitHub <noreply@github.com>2022-07-28 21:05:23 +0200
commit509ad4280fef8773825fcbd6e5f8927f2b421f32 (patch)
tree50752faf68918be4dacfc50cf7273e1d77584caf /hack
parent5eb06e75928736eb5dcb47273c03cfcbeac0a1a1 (diff)
parenta53a0fca96f8d90d6a1078066618627aa9829267 (diff)
downloadpodman-509ad4280fef8773825fcbd6e5f8927f2b421f32.tar.gz
podman-509ad4280fef8773825fcbd6e5f8927f2b421f32.tar.bz2
podman-509ad4280fef8773825fcbd6e5f8927f2b421f32.zip
Merge pull request #14719 from cevich/use_preinstalled_bats
Cirrus: Use pre-installed bats
Diffstat (limited to 'hack')
-rwxr-xr-xhack/install_bats.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/hack/install_bats.sh b/hack/install_bats.sh
deleted file mode 100755
index 01de8b7c6..000000000
--- a/hack/install_bats.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-die() { echo "${1:-No error message given} (from $(basename $0))"; exit 1; }
-
-if [[ "$(type -t bats)" != "" ]]; then
- # bats is already installed.
- exit 0
-fi
-
-buildDir=$(mktemp -d)
-git clone https://github.com/bats-core/bats-core $buildDir
-
-pushd $buildDir
-pwd
-git reset --hard ${VERSION}
-echo "Installing bats to /usr/local (requires root)"
-sudo ./install.sh /usr/local
-popd
-
-rm -rf $buildDir