Skip to content

Commit

Permalink
refactor: Update Makefile to use dynamic shell path (#10801)
Browse files Browse the repository at this point in the history
Update the `Makefile` to use the dynamic shell path instead of the
hardcoded `/bin/bash`. This ensures that the correct shell is used
across different environments. Additionally, the environment variable
`SHELL` is updated to use the `which` command to locate the path of the
bash shell.
  • Loading branch information
hangy authored Sep 17, 2024
1 parent fc0af8c commit b9dc335
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 @@ -6,7 +6,7 @@ endif


# use bash everywhere !
SHELL := /bin/bash
SHELL := $(shell which bash)
# some vars
ENV_FILE ?= .env
NAME = "ProductOpener"
Expand Down

0 comments on commit b9dc335

Please sign in to comment.