diff options
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,8 +1,8 @@ .PHONY: check check: - ./build-aux/assert-nixfmt.sh - ./build-aux/assert-shellcheck.sh - ./build-aux/assert-todos.sh + sh -eux build-aux/assert-nixfmt.sh + sh -eux build-aux/assert-shellcheck.sh + sh -eux build-aux/assert-todos.sh .PHONY: clean clean: @@ -10,5 +10,5 @@ clean: .PHONY: public public: - bash ./scripts/generate-tasks-and-bugs.sh + sh -eux scripts/generate-tasks-and-bugs.sh pandoc -s --metadata title='dotfiles - EuAndreh' -c styles.css -o public/index.html README.md |
