Menu

[d29355]: / zipgit.sh  Maximize  Restore  History

Download this file

10 lines (9 with data), 163 Bytes

1
2
3
4
5
6
7
8
9
#!/bin/bash
ZIPF=`pwd`/$1-$(date +"%H%M%S").zip
git archive --format zip --output $ZIPF master
cd docs
make clean
make html
cd _build
zip -r $ZIPF html
echo $ZIPF