From cfc98c519dc897f639420330db0a10656157a996 Mon Sep 17 00:00:00 2001 From: Nigel Greenway Date: Tue, 21 Oct 2025 02:16:47 +0100 Subject: [PATCH] fix: add missing quotes (#21) Adds: - Missing quotes around `directory` variable Co-authored-by: Nigel Greenway --- src/main | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main b/src/main index 71fcaf5..c1d4216 100755 --- a/src/main +++ b/src/main @@ -46,7 +46,7 @@ fi ### # Sanitize variables -directory=$(clean_directory $directory) +directory=$(clean_directory "$directory") branch=$(clean_branch_name "$branch") if git rev-parse --is-bare-repository 2> /dev/null | grep -q "true"; then