Skip to content

Commit f4cdaa2

Browse files
committed
feat(gutenbuild): add build script for gutenbuild
1 parent 6eebb39 commit f4cdaa2

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deps:
3434
test: build
3535
grep -q '<title>Deis Documentation</title>' _build/html/index.html
3636
@echo
37-
@echo "Test finished. The HTML pages are in $(BUILDDIR)/html."
37+
@echo "Test finished. The HTML pages are in $(BUILDDIR)."
3838

3939
docker-build:
4040
docker build --rm -t ${IMAGE} .

_scripts/gutenbuild

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)