ThreeDotsLabs / wild-workouts-go-ddd-example

Go DDD example application. Complete project to show how to apply DDD, Clean Architecture, and CQRS by practical refactoring.
https://threedots.tech
MIT License
5.14k stars 472 forks source link

Avoid bashism in makefiles for the sake of systems where /bin/sh is t… #2

Closed wasosa closed 4 years ago

wasosa commented 4 years ago

…he default

Fixes this error during 'make': source ./.env && terraform apply /bin/sh: 1: source: not found Makefile:18: recipe for target 'apply' failed make: *** [apply] Error 127 The default shell for make (at least on Ubuntu 18.04) is still /bin/sh, which does not like 'source'; so use '.' instead for sourcing files.

m110 commented 4 years ago

Thank you @wasosa!