File: buildref.sh

package info (click to toggle)
tools-analyzer-clojure 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: xml: 28; sh: 25; makefile: 22
file content (15 lines) | stat: -rwxr-xr-x 281 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

java -cp .:`lein cp` clojure.main <<EOF
 (load "gen-ref")
 (System/exit 0)
EOF

git pull
mv quickref.html q.html
git checkout origin/gh-pages
mv q.html quickref.html
git add quickref.html
git commit -m "update quickref"
git push origin HEAD:gh-pages
git checkout master