Move embed-static.sh into scripts folder

This commit is contained in:
Fabian Reinartz 2015-05-28 22:03:34 +02:00
parent 02717e6fde
commit 027d8968d5
3 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ RUN apk add --update -t build-deps go git mercurial vim \
&& go get github.com/tools/godep \ && go get github.com/tools/godep \
&& cd /go/src/github.com/prometheus/prometheus \ && cd /go/src/github.com/prometheus/prometheus \
&& $GOPATH/bin/godep restore && go get -d \ && $GOPATH/bin/godep restore && go get -d \
&& ./utility/embed-static.sh web/static web/templates | gofmt > web/blob/files.go \ && ./scripts/embed-static.sh web/static web/templates | gofmt > web/blob/files.go \
&& go build -ldflags " \ && go build -ldflags " \
-X main.buildVersion $(cat VERSION) \ -X main.buildVersion $(cat VERSION) \
-X main.buildRevision $(git rev-parse --short HEAD) \ -X main.buildRevision $(git rev-parse --short HEAD) \

View file

@ -20,7 +20,7 @@ SUFFIXES:
blob/files.go: $(shell find templates/ static/ -type f) blob/files.go: $(shell find templates/ static/ -type f)
# Note that embed-static.sh excludes map files and the # Note that embed-static.sh excludes map files and the
# non-minified bootstrap files. # non-minified bootstrap files.
../utility/embed-static.sh static templates | $(GOFMT) > $@ ../scripts/embed-static.sh static templates | $(GOFMT) > $@
clean: clean:
-rm -f blob/files.go -rm -f blob/files.go