Browse Source

Add quotes to allow values containing spaces

Alexis Degrugillier 6 years ago
parent
commit
06ededbecc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -66,7 +66,7 @@ ifndef value
 	@echo To add a key, you need to provide its value in the "value" variable.
 	@echo To add a key, you need to provide its value in the "value" variable.
 	@exit 10
 	@exit 10
 endif
 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.
 	@echo Key added.
 
 
 .PHONY: i18n-remove-key
 .PHONY: i18n-remove-key