diff options
author | Sascha Grunert <sgrunert@suse.com> | 2020-08-25 15:24:45 +0200 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2020-08-28 12:17:46 +0200 |
commit | 773bbffd7f2c54ebadcc34be57b56450865aa54f (patch) | |
tree | 260f25eb593d281c84732bc9cddf3d7bb6e5242d /test/system/helpers.bash | |
parent | 061c93f70101026d79cca6e75ac0c565e1fa99ec (diff) | |
download | podman-773bbffd7f2c54ebadcc34be57b56450865aa54f.tar.gz podman-773bbffd7f2c54ebadcc34be57b56450865aa54f.tar.bz2 podman-773bbffd7f2c54ebadcc34be57b56450865aa54f.zip |
Just use `rm` for helper command to remove storage
This allows to use any kind of `rm` in `$PATH` for the system tests.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'test/system/helpers.bash')
-rw-r--r-- | test/system/helpers.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash index a6414344e..6c24b24b3 100644 --- a/test/system/helpers.bash +++ b/test/system/helpers.bash @@ -67,7 +67,7 @@ function basic_teardown() { run_podman '?' pod rm --all --force run_podman '?' rm --all --force - /bin/rm -rf $PODMAN_TMPDIR + command rm -rf $PODMAN_TMPDIR } |