remove clean subcmd

This commit is contained in:
j-hc 2023-02-28 15:50:36 +03:00
parent 6e4e6156ad
commit 7b68752cba

View File

@ -2,11 +2,6 @@
set -euo pipefail
if [ "$1" = clean ]; then
rm -r build temp logs
exit 0
fi
source utils.sh
trap "rm -rf temp/tmp.*; exit 1" INT