From eeed90e82b2bbee40fe43b9a16f535b1c58df32a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Wed, 17 Nov 2021 22:03:31 +0100 Subject: [PATCH] Fix macos export templates move command --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c612a86..cc672ce 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -50,11 +50,10 @@ jobs: run: brew install --cask butler - name: Setup export templates run: | - mkdir -v -p ~/Library/Application Support/Godot/templates/${GODOT_VERSION}.stable + mkdir -v -p "~/Library/Application Support/Godot/templates/${GODOT_VERSION}.stable" wget -q https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_export_templates.tpz unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz - mv templates/* ~/Library/Application Support/Godot/templates/${GODOT_VERSION}.stable/ - ls ~/Library/Application Support/Godot/templates/${GODOT_VERSION}.stable/ + mv templates/* "~/Library/Application Support/Godot/templates/${GODOT_VERSION}.stable/" - name: Build game run: | mkdir -v -p build/mac