diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-27 20:56:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 20:56:17 +0200 |
commit | 956caf303a80105845b8e94b7018416abc59a474 (patch) | |
tree | e4e787beafc2a82c601cd84710f95a097c001a5b /contrib/cirrus/rootless_test.sh | |
parent | bf92ec523494859301e6337539bc0d97e232b80a (diff) | |
parent | 9fad55c87f0ae6d2d01c77d8c67c5883ccbdbfde (diff) | |
download | podman-956caf303a80105845b8e94b7018416abc59a474.tar.gz podman-956caf303a80105845b8e94b7018416abc59a474.tar.bz2 podman-956caf303a80105845b8e94b7018416abc59a474.zip |
Merge pull request #7070 from edsantiago/ci_fixes
CI - various fixes
Diffstat (limited to 'contrib/cirrus/rootless_test.sh')
-rwxr-xr-x | contrib/cirrus/rootless_test.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/cirrus/rootless_test.sh b/contrib/cirrus/rootless_test.sh index 9e1b1d911..63cbec69b 100755 --- a/contrib/cirrus/rootless_test.sh +++ b/contrib/cirrus/rootless_test.sh @@ -2,11 +2,13 @@ set -e +echo "$(date --rfc-3339=seconds) $(basename $0) started with '$*'" + source $(dirname $0)/lib.sh if [[ "$UID" == "0" ]] then - echo "Error: Expected to be running as a regular user" + echo "$(basename $0): Error: Expected to be running as a regular user" exit 1 fi |