Skip to content

Commit

Permalink
Workaround for getconf that doesn't support PATH (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonjh authored Nov 22, 2024
1 parent 3549e23 commit 05bf7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# Defaults

.NOTPARALLEL:
SHELL := $(shell env sh -c 'PATH="$$(command -p getconf PATH)" command -v sh')
SHELL := $(shell env sh -c 'PATH="$$(command -p getconf PATH 2> /dev/null):$${PATH:-/bin:/usr/bin}" command -v sh')
BUILDDIR = ./build
LOGDIR = ./logs
LINTSH = ./.lint.sh
Expand Down

0 comments on commit 05bf7ae

Please sign in to comment.