diff options
author | EuAndreh <eu@euandre.org> | 2021-02-14 02:52:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-14 02:52:37 -0300 |
commit | 17e622f0379c0ec36d26594a7d239e6088b100e5 (patch) | |
tree | 219a63e3ca04710851395e5cebd1a43de6c90678 /Makefile | |
parent | README.md: Add commented Debian section (diff) | |
download | package-repository-17e622f0379c0ec36d26594a7d239e6088b100e5.tar.gz package-repository-17e622f0379c0ec36d26594a7d239e6088b100e5.tar.xz |
Makefile: Fix quoting on variable expansion
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ NAME_UC = EuAndreh's package repository NAME = package-repository MAILING_LIST = public-inbox public: README.md TODOs.md - sh aux/workflow/TODOs.sh '$(NAME_UC)' $(NAME) $(MAILING_LIST) - sh aux/workflow/README.sh '$(NAME_UC)' $(NAME) + sh aux/workflow/TODOs.sh "$(NAME_UC)" $(NAME) $(MAILING_LIST) + sh aux/workflow/README.sh "$(NAME_UC)" $(NAME) .PHONY: clean check |