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/17 22:59:17 UTC

incubator-ponymail git commit: Bug: combine.sh uses GNU-only sed extension -s (--separate); it's not needed fixes #187

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master 58b835334 -> 91713183d


Bug: combine.sh uses GNU-only sed extension -s (--separate); it's not
needed fixes #187

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

Branch: refs/heads/master
Commit: 91713183d55455c324bc5a42dcb3de518ef1db15
Parents: 58b8353
Author: Sebb <se...@apache.org>
Authored: Mon Oct 17 23:58:57 2016 +0100
Committer: Sebb <se...@apache.org>
Committed: Mon Oct 17 23:58:57 2016 +0100

----------------------------------------------------------------------
 site/js/dev/combine.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/91713183/site/js/dev/combine.sh
----------------------------------------------------------------------
diff --git a/site/js/dev/combine.sh b/site/js/dev/combine.sh
index 352a5a2..775d6c2 100644
--- a/site/js/dev/combine.sh
+++ b/site/js/dev/combine.sh
@@ -19,6 +19,6 @@ echo '/*
 ' > ../ponymail.js
 for f in `ls *.js`; do
     printf "\n\n/******************************************\n Fetched from dev/${f}\n******************************************/\n\n" >> ../ponymail.js
-    sed -s -e '/^\/\*/,/\*\//d' ${f} >> ../ponymail.js
+    sed -e '/^\/\*/,/\*\//d' ${f} >> ../ponymail.js
 done
 echo "Done!"