Skip to content

Commit

Permalink
Merge pull request #2809 from owid/fix-owid-shell-path-issue-in-makefile
Browse files Browse the repository at this point in the history
🐛 fix makefile issue
  • Loading branch information
danyx23 authored Oct 20, 2023
2 parents 8908b6d + db2d135 commit baa719c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
LOGIN_SHELL = $(shell finger $(USER) | grep 'Shell:*' | cut -f3 -d ":")

# Check for the environment variable OWID_SCRIPT_SHELL and fall back to LOGIN_SHELL if not set
SCRIPT_SHELL ?= $(shell echo $$OWID_SCRIPT_SHELL)
SCRIPT_SHELL ?= $(LOGIN_SHELL)
SCRIPT_SHELL ?= $(or $(shell echo $$OWID_SCRIPT_SHELL),$(LOGIN_SHELL))


# setting .env variables as Make variables for validate.env targets
# https://lithic.tech/blog/2020-05/makefile-dot-env/
Expand Down

0 comments on commit baa719c

Please sign in to comment.