1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 17:23:16 +00:00
TiddlyWiki5/bin/clean.sh
Jermolene a089fb94a6 Add clean.sh for removing build output
We use a regex to delete all files in `./editions/*/output/*`
2015-10-22 22:46:47 +01:00

6 lines
96 B
Bash
Executable File

#!/bin/bash
# Remove any output files
find . -regex "^./editions/[a-z\.-]*/output/.*" -delete