TIL that you can use pretty much any arbitrary programming language for recipe execution in GNU Make. Even JS. Instead of setting node
directly as the SHELL var, you instead go through a bash script like so:
\#!/bin/bash
node -e "$2"
... works as a web developer in Hveragerði, Iceland, and writes about the web, digital publishing, and web/product development
These are his notes
TIL that you can use pretty much any arbitrary programming language for recipe execution in GNU Make. Even JS. Instead of setting node
directly as the SHELL var, you instead go through a bash script like so:
\#!/bin/bash
node -e "$2"