mirror of
https://github.com/containers/youki
synced 2024-11-23 09:21:57 +01:00
54bb830b4b
Signed-off-by: utam0k <k0ma@utam0k.jp>
11 lines
320 B
Bash
Executable File
11 lines
320 B
Bash
Executable File
#! /bin/bash
|
|
# we don't set -eu here, as some of the binaries might be potentially be missing
|
|
# and that is fine, that means they are already removed.
|
|
|
|
for bin in youki integration_test runtimetest bundle.tar.gz test.log; do
|
|
if [ -f $bin ]; then
|
|
rm ${1}/$bin
|
|
fi
|
|
done
|
|
exit 0 # unconditionally return zero
|