You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2016/10/29 20:42:37 UTC

incubator-ponymail git commit: Optionally keep the combined coffee input file

Repository: incubator-ponymail
Updated Branches:
  refs/heads/coffee-and-cake b6a1bdc48 -> 01396f2e3


Optionally keep the combined coffee input file


Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/01396f2e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/01396f2e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/01396f2e

Branch: refs/heads/coffee-and-cake
Commit: 01396f2e3fa6fb807fc2ece607585dbc46d0c3bd
Parents: b6a1bdc
Author: Sebb <se...@apache.org>
Authored: Sat Oct 29 21:42:28 2016 +0100
Committer: Sebb <se...@apache.org>
Committed: Sat Oct 29 21:42:28 2016 +0100

----------------------------------------------------------------------
 site/js/coffee/combine.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/01396f2e/site/js/coffee/combine.sh
----------------------------------------------------------------------
diff --git a/site/js/coffee/combine.sh b/site/js/coffee/combine.sh
index 401dc64..87d0aec 100644
--- a/site/js/coffee/combine.sh
+++ b/site/js/coffee/combine.sh
@@ -30,5 +30,10 @@ done
 echo "Created $OUTFILE; compiling..."
 
 coffee --bare --output .. --compile $OUTFILE || exit
-rm $OUTFILE
+if [ "$1" == "--nodelete" ]
+then
+    echo "Keeping $OUTFILE"
+else
+    rm $OUTFILE
+fi
 echo "All done!"