aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2019-12-07 11:56:26 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2019-12-07 12:57:52 +0100
commit06ededbecc1cca9c8f5f3d1a2749be2271083736 (patch)
tree3470bc75aa0857b713155ae3fd86701a3a0d0ac9 /Makefile
parentd13a8a0eb1c37c6b241bcea3d0123e8fa6bd8f5a (diff)
Add quotes to allow values containing spaces
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ec559fed2..642f2e5a3 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,7 @@ ifndef value
@echo To add a key, you need to provide its value in the "value" variable.
@exit 10
endif
- @$(PHP) ./cli/manipulate.translation.php -a add -k $(key) -v $(value)
+ @$(PHP) ./cli/manipulate.translation.php -a add -k $(key) -v "$(value)"
@echo Key added.
.PHONY: i18n-remove-key