From f8723397e93a9bc6fd3e0714e925a5e42c558ff3 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sun, 3 Jan 2016 18:02:49 +0000 Subject: [PATCH] Fix clean.sh Was ignoring editions with numerals in pathname --- bin/clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/clean.sh b/bin/clean.sh index b282f332c..522479edb 100755 --- a/bin/clean.sh +++ b/bin/clean.sh @@ -2,4 +2,4 @@ # Remove any output files -find . -regex "^./editions/[a-z\.-]*/output/.*" -delete +find . -regex "^./editions/[a-z0-9\.-]*/output/.*" -delete