Sha256: da3765e0b44470957ac014911a726490c77942e87b81343d004534f69f30b93d
Contents?: true
Size: 484 Bytes
Versions: 5
Compression:
Stored size: 484 Bytes
Contents
#!/bin/bash # #git checkout master #git pull #git checkout gh-pages #git reset --hard master #git push -f a=`find . -name "docs.html" -or -name "index.html" -not -path "*/test/*"` b=`find . -name "*.html" ! -name 'sample-content.html' -path "*/demo/*"` c=(`for R in "${a[@]}" "${b[@]}" ; do echo "$R" ; done | sort -du`) for f in ${c[@]}; do echo "vulcanize " $f vulcanize --inline-css --inline-scripts $f > $f.build mv $f.build $f done #git commit -a -m "build" #git push
Version data entries
5 entries across 5 versions & 1 rubygems