saltywitch/clean.sh

6 lines
79 B
Bash
Executable File

#!/usr/bin/env sh
for dir in ./build-*; do
[ -d $dir ] && rm -r $dir
done