diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-17 12:24:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 12:24:58 +0200 |
commit | 47108e2e093bae318773998a18f83d0504a402e0 (patch) | |
tree | 30b4052dc8b72c65d6407300685855f64e56015e /test/test_podman_baseline.sh | |
parent | 1db18bf10775cf0502d7e9be4946d1d29a6d8e06 (diff) | |
parent | ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85 (diff) | |
download | podman-47108e2e093bae318773998a18f83d0504a402e0.tar.gz podman-47108e2e093bae318773998a18f83d0504a402e0.tar.bz2 podman-47108e2e093bae318773998a18f83d0504a402e0.zip |
Merge pull request #7333 from openSUSE/bashify
Use `bash` binary from env instead of /bin/bash for scripts
Diffstat (limited to 'test/test_podman_baseline.sh')
-rwxr-xr-x | test/test_podman_baseline.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_podman_baseline.sh b/test/test_podman_baseline.sh index d205f544a..3624d24c2 100755 --- a/test/test_podman_baseline.sh +++ b/test/test_podman_baseline.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # test_podman_baseline.sh # A script to be run at the command line with Podman installed. # This should be run against a new kit to provide base level testing @@ -215,7 +215,7 @@ podman run $image ls / ######## FILE=./runecho.sh /bin/cat <<EOM >$FILE -#!/bin/bash +#!/usr/bin/env bash for i in {1..9}; do echo "This is a new container pull ipbabble [" \$i "]" |