1
0
mirror of https://github.com/containers/youki synced 2024-11-23 09:21:57 +01:00
youki/scripts/clean.sh

11 lines
320 B
Bash
Raw Normal View History

2022-02-19 18:59:10 +01:00
#! /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