X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=00448c38f556e9963dd22e95840977c5bfb2272d;hb=3be75fa540ccf036bd41dfd3c75df5e7633f4863;hp=422f0fd96b237136ebe426921a6c6389ba9f3a54;hpb=b7d36956d0b31d38788b9508e2de9f1047395c1f;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index 422f0fd..00448c3 100755 --- a/push-to-web.sh +++ b/push-to-web.sh @@ -9,6 +9,7 @@ fi set -x site=$1 + # Produce dygraph-combined.js. ./generate-combined.sh @@ -18,10 +19,14 @@ chmod a+r docs/options.html if [ -s docs/options.html ] ; then ./generate-jsdoc.sh + # Make sure everything will be readable on the web. + # This is like "chmod -R a+rX", but excludes the .git directory. + find . -path ./.git -prune -o -print | xargs chmod a+rX + # Copy everything to the site. - rsync -avzr gallery common tests jsdoc experimental plugins $site \ + rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \ && \ - rsync -avzr dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/ $site/ + rsync -avzr dashed-canvas.js stacktrace.js dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/ else echo "generate-documentation.py failed" fi