From 58c5b50514fbadc308f57d623c10cd22ca88cf3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= <3188382+rm--@users.noreply.github.com> Date: Tue, 14 Nov 2023 05:05:28 +0100 Subject: [PATCH] fix: git-standup find error (tj#1106) (#1110) --- bin/git-standup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/git-standup b/bin/git-standup index 71653bed4..c0787f5b1 100755 --- a/bin/git-standup +++ b/bin/git-standup @@ -240,7 +240,8 @@ if [[ $in_git_repo != 0 ]]; then ## Set delimiter to newline for the loop IFS=$'\n' ## Recursively search for git repositories - PROJECT_DIRS=$(find "$INCLUDE_LINKS" . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git) + # shellcheck disable=SC2086 + PROJECT_DIRS=$(find $INCLUDE_LINKS . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git) # Fetch the latest commits, if required if [ "$FETCH_LAST_COMMIT" = true ]; then