From 5bb139463a151e0ffa215fc32ca2a8c9cfa6b781 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 16 Jan 2021 22:31:40 -0300 Subject: Makefile: Use sh over relying on shebang --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6a213e7d..5a420d37 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.3