Added the tools directory to the Makefile so it gets copied when making nightlies and demos.

This commit is contained in:
Kin Blas 2011-10-07 09:36:12 -07:00
parent e3f45bf0f3
commit 9983e96382

View file

@ -147,7 +147,7 @@ nightly: pull zip
@@mkdir -p ${VER}
# Copy in the base stuff for the demos
@@cp -r index.html themes experiments docs ${VER}/
@@cp -r index.html themes experiments docs tools ${VER}/
# First change all the paths from super deep to the same level for JS files
@@find ${VER} -type f -name '*.html' -exec sed -i 's|src="../../../js|src="js|g' {} \;
@ -184,7 +184,7 @@ deploy: zip
# Deploy Demos to the jQueryMobile.com site
@@mkdir -p ${VER}
@@cp -r index.html themes experiments docs ${VER}/
@@cp -r index.html themes experiments docs tools ${VER}/
@@find ${VER} -type f -name '*.html' -exec sed -i "" -e 's|src="../../../js|src="js|g' {} \;
@@find ${VER} -type f -name '*.html' -exec sed -i "" -e 's|src="../../js|src="js|g' {} \;