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:
parent
8ce207edc6
commit
7efce3aee6
4
Makefile
4
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue