Skip to content

Commit c925927

Browse files
committed
Use a more portable file reader which does not require GNU Make 4.2+ .
1 parent 1d274c2 commit c925927

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
@@ -134,7 +134,7 @@ initservices:
134134
@echo $$ENABLED_SERVICES > ./.enabled_services
135135

136136
up: initcomposevars initservices
137-
${DOCKER_COMPOSE} up ${DETACH} $(file < ./.enabled_services)
137+
${DOCKER_COMPOSE} up ${DETACH} $(shell head -n1 .enabled_services)
138138

139139
down: initcomposevars
140140
# NOTE: To suppress podman warnings about missing containers use:

0 commit comments

Comments
 (0)