From 3a251b76bf484d58ebe61d16e2eb41a7bca039fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Sat, 12 Aug 2023 21:13:38 +0200 Subject: [PATCH] Fix handling of spaces for comment field in bin/t --- symlinks/bin/t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symlinks/bin/t b/symlinks/bin/t index 76f567f..8be9797 100755 --- a/symlinks/bin/t +++ b/symlinks/bin/t @@ -109,7 +109,7 @@ if [ $HELP -eq 1 ]; then fi PROJECT="${POSITIONAL[1]}" -COMMENT="${POSITIONAL[2]}" +COMMENT="${POSITIONAL[@]:2}" echov "Project: $PROJECT" echov "Comment: $COMMENT"