linux/make_artifacts.sh: Use -f when removing artifacts/DONE.

This commit is contained in:
John MacFarlane 2021-03-08 15:02:26 -08:00
parent cac796e1ab
commit 0515c44859

View file

@ -11,7 +11,8 @@ esac
ARTIFACTS="${ARTIFACTS:-/artifacts}"
rm $ARTIFACTS/*
# This is our sentinel that tells us when we're done.
rm -f $ARTIFACTS/DONE
clean_up() {
echo "All done!" > "$ARTIFACTS/DONE"