From 0d86109e52aa27de86f099e8efb6a11473420618 Mon Sep 17 00:00:00 2001 From: Filippo Ledda Date: Wed, 10 Jan 2024 19:20:33 +0100 Subject: [PATCH] #874 fix paths with spaces --- applications/workspaces/tasks/github-copy/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/workspaces/tasks/github-copy/run.sh b/applications/workspaces/tasks/github-copy/run.sh index 305262f6..e9820ed7 100644 --- a/applications/workspaces/tasks/github-copy/run.sh +++ b/applications/workspaces/tasks/github-copy/run.sh @@ -13,7 +13,7 @@ cd "${download_path}" echo GitHub copy "$paths" to "$download_path" ls -la -git config --global --add safe.directory $download_path +git config --global --add safe.directory "$download_path" # do the next command only if download path does not exist if [ ! -d "${download_path}/.git" ]; then git clone -n "${url}" --branch $branch "${download_path}"