From f9c6ed3060e66923382e90e39228535b5535bde0 Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Fri, 15 Nov 2024 05:46:34 +0000
Subject: [PATCH] Fix template move path

---
 commands/godot_install.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/godot_install.sh b/commands/godot_install.sh
index 9bed3b9..338a8dc 100755
--- a/commands/godot_install.sh
+++ b/commands/godot_install.sh
@@ -22,6 +22,6 @@ mv "$BINARY_NAME" /usr/bin/godot
 mkdir -p "$LOCAL_PATH"
 wget -O "${TMP_ROOT}/templates.tpz" "$TEMPLATES_PATH"
 unzip -o "${TMP_ROOT}/templates.tpz" -d "${TMP_ROOT}/godot_templates"
-mv -r "${TMP_ROOT}/godot_templates/*" "$LOCAL_PATH/"
+mv "${TMP_ROOT}/godot_templates/templates/*" "$LOCAL_PATH/"
 
 rm -r "$TMP_ROOT"
\ No newline at end of file
-- 
GitLab