diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-23 23:20:31 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-24 00:05:19 +0000 |
commit | 4b0959458c821ef26990fe1fe5931d552512526d (patch) | |
tree | bfd443f3a00207dac26c81ef7ccd2ce5bfe59449 /makefile_escaping/shell.mk | |
parent | add .gitattributes (diff) | |
download | blog-4b0959458c821ef26990fe1fe5931d552512526d.tar.gz blog-4b0959458c821ef26990fe1fe5931d552512526d.zip |
makefile_escaping: set up CI
Diffstat (limited to 'makefile_escaping/shell.mk')
-rw-r--r-- | makefile_escaping/shell.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile_escaping/shell.mk b/makefile_escaping/shell.mk new file mode 100644 index 0000000..36db8d8 --- /dev/null +++ b/makefile_escaping/shell.mk @@ -0,0 +1,14 @@ +escape = $(subst ','\'',$(1)) + +cwd := $(shell basename -- "$$( pwd )") +export cwd + +echo_cwd := printf '%s\n' '$(call escape,$(cwd))' +bash_cwd := bash -c '$(call escape,$(echo_cwd))' + +.PHONY: test +test: + @printf '%s\n' '$(call escape,$(cwd))' + @printf '%s\n' "$$cwd" + @bash -c '$(call escape,$(echo_cwd))' + @bash -c '$(call escape,$(bash_cwd))' |