From 7efce3aee6d5e269d5c3f384676bf1beece4ecd7 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Sun, 8 Apr 2018 12:30:27 -0400 Subject: [PATCH] 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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2125b47..9d130cb 100644 --- a/Makefile +++ b/Makefile @@ -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