소스 검색

Add quotes to allow values containing spaces

Alexis Degrugillier 6 년 전
부모
커밋
06ededbecc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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.
 	@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