Unquote GODOT_TEMPLATE_DIR in Makefile

Using the quoted string created the directory '~' in the current working
directory instead of expanding the '~' into the home directory of the
current user.
This commit is contained in:
Kienan Stewart 2018-04-08 12:30:27 -04:00
parent 8ce207edc6
commit 7efce3aee6
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ export-linux: build-dir
$(GODOT) --path "$(GODOT_PROJECT_PATH)" --export "$(TARGET_LINUX)" "../$(BUILD_DIR)/$(PROJECT_NAME)-x11"
install-templates:
mkdir -p "$(GODOT_TEMPLATE_DIR)"
mkdir -p $(GODOT_TEMPLATE_DIR)
wget $(WGET_ARGS) $(EXPORT_TEMPLATE_SOURCE) -O templates.tpz
unzip templates.tpz
mv templates/ "$(GODOT_TEMPLATE_DIR)/$(GODOT_TEMPLATE_VERSION)"
mv templates/ $(GODOT_TEMPLATE_DIR)/$(GODOT_TEMPLATE_VERSION)
rm templates.tpz