2013-08-20 21:49:05 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Copyright 2013 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
STATIC="
|
2014-03-14 16:58:22 -06:00
|
|
|
callgraph.html
|
2013-08-20 21:49:05 -06:00
|
|
|
codewalk.html
|
|
|
|
codewalkdir.html
|
|
|
|
dirlist.html
|
|
|
|
error.html
|
|
|
|
example.html
|
|
|
|
godoc.html
|
|
|
|
godocs.js
|
2014-03-14 16:58:22 -06:00
|
|
|
images/minus.gif
|
|
|
|
images/plus.gif
|
|
|
|
images/treeview-black-line.gif
|
|
|
|
images/treeview-black.gif
|
|
|
|
images/treeview-default-line.gif
|
|
|
|
images/treeview-default.gif
|
|
|
|
images/treeview-gray-line.gif
|
|
|
|
images/treeview-gray.gif
|
|
|
|
implements.html
|
2013-08-20 21:49:05 -06:00
|
|
|
jquery.js
|
2014-03-14 16:58:22 -06:00
|
|
|
jquery.treeview.css
|
|
|
|
jquery.treeview.edit.js
|
|
|
|
jquery.treeview.js
|
|
|
|
methodset.html
|
2013-08-20 21:49:05 -06:00
|
|
|
opensearch.xml
|
|
|
|
package.html
|
|
|
|
package.txt
|
2013-09-17 23:12:51 -06:00
|
|
|
play.js
|
2013-08-20 21:49:05 -06:00
|
|
|
playground.js
|
|
|
|
search.html
|
|
|
|
search.txt
|
2014-01-06 07:51:01 -07:00
|
|
|
searchcode.html
|
|
|
|
searchdoc.html
|
|
|
|
searchtxt.html
|
2013-08-20 21:49:05 -06:00
|
|
|
style.css
|
|
|
|
"
|
|
|
|
|
|
|
|
go run bake.go $STATIC | gofmt > static.go
|