Skip to content

Commit 1522210

Browse files
committed
Fix env target shell sourcing
1 parent aba1b67 commit 1522210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ $(CONFIG):
143143
# $(ENV): Prints the evaluated docker compose default env configuration.
144144
#
145145
$(ENV):
146-
@source $(COMPOSE_ENV_FILE) && \
146+
@. ./$(COMPOSE_ENV_FILE) && \
147147
awk -F '=' '/^[^#]/ { \
148148
gsub(/^[[:space:]]+|[[:space:]]+$$/, ""); \
149149
value = ENVIRON[$$1]; \

0 commit comments

Comments
 (0)