1
0
mirror of https://github.com/containers/youki synced 2024-11-23 17:32:15 +01:00
youki/scripts/clean.sh

15 lines
237 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
2022-02-19 18:59:10 +01:00
2022-11-29 12:40:26 +01:00
for bin in youki integration_test runtimetest test.log; do
if [ -f $bin ]; then
rm -f ${1}/$bin
fi
done
2022-11-29 12:40:26 +01:00
rm -rf runtimetest-target
cargo clean
exit 0 # unconditionally return zero