1
0
mirror of https://github.com/containers/youki synced 2024-11-23 09:21:57 +01:00
youki/scripts/clean.sh
utam0k 54bb830b4b
Introduce the root Makefile.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-03-11 22:14:34 +09:00

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