summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-04 13:43:35 -0400
committerGitHub <noreply@github.com>2021-10-04 13:43:35 -0400
commitc15c1540837b25305729bc72d61372098e204151 (patch)
tree9589fb825ff42e442664419ff826d95df178449c
parent1dfba5da85449eb99e11b37b9bfbe11d0b2b2f62 (diff)
parentdeb7517cc2e9c8875afcb3f984a1d57bacaf86c5 (diff)
downloadpodman-c15c1540837b25305729bc72d61372098e204151.tar.gz
podman-c15c1540837b25305729bc72d61372098e204151.tar.bz2
podman-c15c1540837b25305729bc72d61372098e204151.zip
Merge pull request #11853 from edsantiago/bats_permission_fix
[v3.4] bats permission fix
-rw-r--r--test/system/160-volumes.bats2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats
index e21be9ea4..fca97e6df 100644
--- a/test/system/160-volumes.bats
+++ b/test/system/160-volumes.bats
@@ -191,7 +191,7 @@ EOF
run_podman run --rm -v my_vol:/data $IMAGE sh -c "echo hello >> /data/test"
run_podman volume create my_vol2
- tarfile=hello$(random_string | tr A-Z a-z).tar
+ tarfile=${PODMAN_TMPDIR}/hello$(random_string | tr A-Z a-z).tar
run_podman volume export my_vol --output=$tarfile
# we want to use `run_podman volume export my_vol` but run_podman is wrapping EOF
run_podman volume import my_vol2 - < $tarfile