From 9fd508fd343fce84a52a7f79baafb04374b4701a Mon Sep 17 00:00:00 2001 From: bleeptrack Date: Tue, 12 Jan 2021 11:06:04 +0100 Subject: [PATCH] quote fix for macOS --- scenes/level.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/level.gd b/scenes/level.gd index 78242cf..aa4b247 100644 --- a/scenes/level.gd +++ b/scenes/level.gd @@ -110,7 +110,7 @@ func construct(): for r2 in repos: if r == r2: continue - game.global_shell.run("git remote add %s %s" % [r2, repos[r2].path]) + game.global_shell.run("git remote add %s '%s'" % [r2, repos[r2].path]) # Allow receiving a push of the checked-out branch. game.global_shell.run("git config receive.denyCurrentBranch ignore")