X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=4bf1b899d697205b6badbb4c00b1756664150781;hb=41273327c7eb2aaa777194f48516e69784aef7f1;hp=e888f02452c16c2a94c5a3be9f748a6cf41e976e;hpb=6070efe28a0c760893fcf1d8b4899aa9554a5480;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index e888f02..4bf1b89 100755 --- a/push-to-web.sh +++ b/push-to-web.sh @@ -9,14 +9,20 @@ fi set -x site=$1 + # Produce dygraph-combined.js. ./generate-combined.sh # Generate documentation. ./generate-documentation.py > docs/options.html +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 \ && \