diff options
| author | EuAndreh <eu@euandre.org> | 2021-01-17 15:03:41 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2021-01-17 15:03:41 -0300 |
| commit | f0b0750622b713018d8359797c8ba9e361e3f6b5 (patch) | |
| tree | a31637758ea7960635a1fccde8caf8b3a71ef766 /Makefile | |
| parent | build-aux/workflow/: Stop relying on pandoc specific markdown capabilities (diff) | |
| download | server-f0b0750622b713018d8359797c8ba9e361e3f6b5.tar.gz server-f0b0750622b713018d8359797c8ba9e361e3f6b5.tar.xz | |
Makefile: Add -eux flag to sh calls
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,9 +2,9 @@ .PHONY: check check: - sh build-aux/assert-shellcheck.sh - sh build-aux/assert-todos.sh - sh build-aux/assert-terraform.sh + sh -eux build-aux/assert-shellcheck.sh + sh -eux build-aux/assert-todos.sh + sh -eux build-aux/assert-terraform.sh .PHONY: clean clean: @@ -12,5 +12,5 @@ clean: .PHONY: public public: - ./build-aux/workflow/TODOs.sh VPS vps public-inbox + sh -eu build-aux/workflow/TODOs.sh VPS vps public-inbox pandoc -s --metadata title='VPS - EuAndreh' -o public/index.html README.md |
