We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eebb39 commit f4cdaa2Copy full SHA for f4cdaa2
2 files changed
Makefile
@@ -34,7 +34,7 @@ deps:
34
test: build
35
grep -q '<title>Deis Documentation</title>' _build/html/index.html
36
@echo
37
- @echo "Test finished. The HTML pages are in $(BUILDDIR)/html."
+ @echo "Test finished. The HTML pages are in $(BUILDDIR)."
38
39
docker-build:
40
docker build --rm -t ${IMAGE} .
_scripts/gutenbuild
@@ -0,0 +1,8 @@
1
+#!/bin/sh
2
+
3
+set -e
4
+set -x
5
6
+build_dest=$1
7
8
+PATH=$HOME/.local/bin:$PATH BUILDDIR=${build_dest} make deps build
0 commit comments