diff options
author | Sascha Grunert <sgrunert@suse.com> | 2020-08-17 09:18:02 +0200 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2020-08-17 10:42:23 +0200 |
commit | ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85 (patch) | |
tree | a8eacd3359e2ce22a2ded1f7efedc39c045272b5 /hack/install_catatonit.sh | |
parent | 96fb5dc94d88bc4eafe82382bfb26b64c479f76b (diff) | |
download | podman-ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85.tar.gz podman-ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85.tar.bz2 podman-ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85.zip |
Use `bash` binary from env instead of /bin/bash for scripts
It's not possible to run any of the scripts on distributions which do
have `bash` not in `/bin`. This is being fixed by using `/usr/bin/env
bash` instead.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'hack/install_catatonit.sh')
-rwxr-xr-x | hack/install_catatonit.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hack/install_catatonit.sh b/hack/install_catatonit.sh index 7fd7592a9..8837db3a8 100755 --- a/hack/install_catatonit.sh +++ b/hack/install_catatonit.sh @@ -1,7 +1,8 @@ -#!/bin/bash -e +#!/usr/bin/env bash BASE_PATH="/usr/libexec/podman" CATATONIT_PATH="${BASE_PATH}/catatonit" CATATONIT_VERSION="v0.1.4" +set -e if [ -f $CATATONIT_PATH ]; then echo "skipping ... catatonit is already installed" |