This is an automated email from the git hooks/post-receive script. apo-guest pushed a commit to branch master in repository netbeans.
commit 59fd12b15ee11dd5bc306d8f87f6306b6e1575e7 Author: Markus Koschany <[email protected]> Date: Sun Jan 3 14:03:52 2016 +0100 Exclude html5doc.zip from orig-tar.sh script. Inlcude the HTML5 documentation to avoid silent errors when using the HTML editor. --- debian/orig-tar.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 4831ad0..9af5e2e 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -128,8 +128,9 @@ find $BASE/ -name "*min.js" -type f -delete # Remove embedded jquery versions find $BASE/ -name "jquery.js" -type f -delete -# Remove zip files. We'll have to reproduce some. -find $BASE/ -name "*.zip" -type f -delete +# Remove zip files. We'll have to reproduce some. We ship the html5 +# documentation to avoid silent errors when using the HTML editor. +find $BASE/ \( -name "*.zip" ! -name "html5doc.zip" \) -type f -delete find $BASE/ -name "*.cap" -type f -delete find $BASE/ -name "*.eap" -type f -delete find $BASE/ -name "*.war" -type f -delete -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/netbeans.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

