Don't hardcode executable paths
`bash` is not specified to reside under `/bin/bash` on all OSs. E.g. on NixOS it does not.
This commit is contained in:
parent
22edd31564
commit
fcb5a56fa7
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
SHELL := /bin/bash
|
||||
SHELL := /usr/bin/env bash
|
||||
AGDA := $(shell find . -type f -and \( -path '*/src/*' -or -path '*/courses/*' \) -and -name '*.lagda.md')
|
||||
AGDAI := $(shell find . -type f -and \( -path '*/src/*' -or -path '*/courses/*' \) -and -name '*.agdai')
|
||||
MARKDOWN := $(subst courses/,out/,$(subst src/,out/,$(subst .lagda.md,.md,$(AGDA))))
|
||||
|
|
Loading…
Reference in a new issue