From 9ca078dfc86af9c50446bceb818af7b48ce7a73e Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 20 Jul 2023 15:15:40 -0300 Subject: Fix: better handling of paths with spaces --- commit | 8 ++++---- commit-updates | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/commit b/commit index fe2ade6..d16fc81 100755 --- a/commit +++ b/commit @@ -13,7 +13,7 @@ GIT="hit" # Usage: git_folder function git_folder { - local folder="$1" folder folders dir_list cwd + local folder="$*" folder folders dir_list cwd if [ -d "$folder/.git" ]; then GIT_FOLDER="$folder" @@ -27,18 +27,18 @@ function git_folder { done cwd="`pwd`" - cd $folder + cd "$folder" for i in $folders; do cd .. if [ -d "$(pwd)/.git" ]; then GIT_FOLDER="$(pwd)" - cd $cwd + cd "$cwd" return fi done - cd $cwd + cd "$cwd" return 1 } diff --git a/commit-updates b/commit-updates index 9fe77d7..1ebcece 100755 --- a/commit-updates +++ b/commit-updates @@ -28,7 +28,7 @@ if $GIT status &> /dev/null; then if [ ! -z "$ARGS" ]; then commit "Updates $ARGS" else - commit "Updates $(basename `pwd`)" + commit "Updates $(basename "`pwd`")" fi else mr commit -m "Updates" -- cgit v1.2.3