From a089fb94a6b3bb6ba923eb39b8cdf020a1f5498f Mon Sep 17 00:00:00 2001 From: Jermolene Date: Thu, 22 Oct 2015 22:46:47 +0100 Subject: [PATCH] Add clean.sh for removing build output We use a regex to delete all files in `./editions/*/output/*` --- bin/clean.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 bin/clean.sh diff --git a/bin/clean.sh b/bin/clean.sh new file mode 100755 index 000000000..b282f332c --- /dev/null +++ b/bin/clean.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +# Remove any output files + +find . -regex "^./editions/[a-z\.-]*/output/.*" -delete