diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-21 08:35:35 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-21 08:35:35 +0300 |
commit | bec4f69b8366edd50e8c0366529060ded820decd (patch) | |
tree | 1234223ed8d16016cb77f007d40ffb4f9386abbe /_posts/2020-05-20-makefile-escaping.md | |
parent | makefile_escaping: -o nounset (diff) | |
download | blog-bec4f69b8366edd50e8c0366529060ded820decd.tar.gz blog-bec4f69b8366edd50e8c0366529060ded820decd.zip |
makefile_escaping: add to the TL;DR
Diffstat (limited to '_posts/2020-05-20-makefile-escaping.md')
-rw-r--r-- | _posts/2020-05-20-makefile-escaping.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md index 80dac27..70bf802 100644 --- a/_posts/2020-05-20-makefile-escaping.md +++ b/_posts/2020-05-20-makefile-escaping.md @@ -35,6 +35,7 @@ variable, but the same rules should apply for all similar `sh`-like shells. TL;DR ----- +* Put the prologue above at the top of your Makefile. * Quote command arguments in Makefiles using single quotes `'`. * Don't use `'` and `$` in stuff like file paths/environment variable values, and you're pretty much good to go. |