Skip to content

Commit

Permalink
Use a more portable file reader which does not require GNU Make 4.2+ .
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbardino committed Aug 7, 2024
1 parent 1d274c2 commit c925927
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 @@ -134,7 +134,7 @@ initservices:
@echo $$ENABLED_SERVICES > ./.enabled_services

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

down: initcomposevars
# NOTE: To suppress podman warnings about missing containers use:
Expand Down

0 comments on commit c925927

Please sign in to comment.