diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-03 11:28:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 11:28:58 -0700 |
commit | 86c8650c2328a4a611e614c7220627feae4d4eae (patch) | |
tree | 54f9a7a775dd613e3ea4533a3ef3dc789c14189c /test/system | |
parent | 343573461b16a703652e1718e032384338b17ab7 (diff) | |
parent | c091374d775a927d8726a26e3f9a088213a89bb4 (diff) | |
download | podman-86c8650c2328a4a611e614c7220627feae4d4eae.tar.gz podman-86c8650c2328a4a611e614c7220627feae4d4eae.tar.bz2 podman-86c8650c2328a4a611e614c7220627feae4d4eae.zip |
Merge pull request #4174 from cevich/use_bash_not_sh
System-tests: Use bash explicitly
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/400-unprivileged-access.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/400-unprivileged-access.bats b/test/system/400-unprivileged-access.bats index 738d8d87b..56c40e9c8 100644 --- a/test/system/400-unprivileged-access.bats +++ b/test/system/400-unprivileged-access.bats @@ -22,7 +22,7 @@ load helpers # as a user, the parent directory must be world-readable. test_script=$PODMAN_TMPDIR/fail-if-writable cat >$test_script <<"EOF" -#!/bin/sh +#!/bin/bash path="$1" |