I have a Make variable:
PASSWORD:=$(shell vault read -field=password test/password)
If vault
is not installed, make
will print make: vault: Command not found
, but continue executing the recipe. How do I make it fail and stop execution if the expression fails?