Add clean.sh for removing build output

We use a regex to delete all files in `./editions/*/output/*`
print-window-tiddler
Jermolene 2015-10-22 22:46:47 +01:00
rodzic 9f954ce55d
commit a089fb94a6
1 zmienionych plików z 5 dodań i 0 usunięć

5
bin/clean.sh 100755
Wyświetl plik

@ -0,0 +1,5 @@
#!/bin/bash
# Remove any output files
find . -regex "^./editions/[a-z\.-]*/output/.*" -delete