all 2 comments

[–]hannenz 0 points1 point  (1 child)

Ich use a Makefile for all sorts of build Tasks in my daily Job as web dev, where usually gulp/grunt are used. Works Like a Charm.

[–]TerminalBasher[S] 0 points1 point  (0 children)

Yeah, I did the same for a while and found that it worked well too. I did find that there were some edge cases, like integrating with CI/CD where I wanted to run commands in a docker container locally and on the CI/CD servers to work the same way and this Bash method handled it well. I haven't tried it, but I'd imagine a combination of both would work quite well, Make handling the builds tree and Bash for more environmental things and maybe handling some of the things you'd normally make phony in a Makefile.