diff --git a/Dockerfile b/Dockerfile index e9d4d5a72..231d0c5ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --update -t build-deps go git mercurial vim \ && go get github.com/tools/godep \ && cd /go/src/github.com/prometheus/prometheus \ && $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 " \ -X main.buildVersion $(cat VERSION) \ -X main.buildRevision $(git rev-parse --short HEAD) \ diff --git a/utility/embed-static.sh b/scripts/embed-static.sh similarity index 100% rename from utility/embed-static.sh rename to scripts/embed-static.sh diff --git a/web/Makefile b/web/Makefile index d7755b301..beffbd5e6 100644 --- a/web/Makefile +++ b/web/Makefile @@ -20,7 +20,7 @@ SUFFIXES: blob/files.go: $(shell find templates/ static/ -type f) # Note that embed-static.sh excludes map files and the # non-minified bootstrap files. - ../utility/embed-static.sh static templates | $(GOFMT) > $@ + ../scripts/embed-static.sh static templates | $(GOFMT) > $@ clean: -rm -f blob/files.go