diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-21 08:34:33 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-21 08:34:33 +0300 |
commit | 3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e (patch) | |
tree | a68f71b788f5568b42cf88fea708573e3a5c9047 /_posts | |
parent | makefile_escaping: unexport MAKEFLAGS (diff) | |
download | blog-3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e.tar.gz blog-3a4ce35a3e1631e5b7958e6ed336bf7bcf454f5e.zip |
makefile_escaping: -o nounset
Diffstat (limited to '_posts')
-rw-r--r-- | _posts/2020-05-20-makefile-escaping.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md index 81b5d1d..80dac27 100644 --- a/_posts/2020-05-20-makefile-escaping.md +++ b/_posts/2020-05-20-makefile-escaping.md @@ -23,7 +23,7 @@ unexport MAKEFLAGS .DELETE_ON_ERROR: .SUFFIXES: SHELL := bash -.SHELLFLAGS := -e -o pipefail -c +.SHELLFLAGS := -eu -o pipefail -c ``` `make` invokes a shell program to execute recipes. |