diff options
author | John McLear <john@mclear.co.uk> | 2012-11-16 13:08:52 -0800 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2012-11-16 13:08:52 -0800 |
commit | 0b7d488ea49f1fca8bed99b5dedcd54521f07b0e (patch) | |
tree | 8c1578d62b9cd17967cd7512a6f0865ed7f4a752 | |
parent | b1b1fa018a20b4597672cf435c6b4cff68b758c9 (diff) | |
parent | fbe16da728528ffecd388949a59f6960adcba8aa (diff) | |
download | etherpad-lite-0b7d488ea49f1fca8bed99b5dedcd54521f07b0e.zip |
Merge pull request #1172 from ether/fix-windows-package-extract
Fix windows package extract
-rwxr-xr-x | bin/buildForWindows.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/buildForWindows.sh b/bin/buildForWindows.sh index 2f906238..c67a3701 100755 --- a/bin/buildForWindows.sh +++ b/bin/buildForWindows.sh @@ -55,6 +55,10 @@ wget "http://nodejs.org/dist/v$NODE_VERSION/node.exe" -O ../node.exe echo "remove git history to reduce folder size" rm -rf .git/objects +echo "remove windows jsdom-nocontextify/test folder" +rm -rf /tmp/etherpad-lite-win/node_modules/ep_etherpad-lite/node_modules/jsdom-nocontextifiy/test/ +rm -rf /tmp/etherpad-lite-win/src/node_modules/jsdom-nocontextifiy/test/ + echo "create the zip..." cd /tmp zip -9 -r etherpad-lite-win.zip etherpad-lite-win |