1
0
mirror of https://github.com/containers/youki synced 2024-11-09 19:25:15 +01:00
youki/scripts/clean.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
282 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
2022-02-19 18:59:10 +01:00
ROOT=$(git rev-parse --show-toplevel)
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 $ROOT/target $ROOT/runtimetest-target
exit 0 # unconditionally return zero