Skip to content

Commit 58c5b50

Browse files
authored
fix: git-standup find error (#1106) (#1110)
1 parent 5020890 commit 58c5b50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/git-standup

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ if [[ $in_git_repo != 0 ]]; then
240240
## Set delimiter to newline for the loop
241241
IFS=$'\n'
242242
## Recursively search for git repositories
243-
PROJECT_DIRS=$(find "$INCLUDE_LINKS" . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git)
243+
# shellcheck disable=SC2086
244+
PROJECT_DIRS=$(find $INCLUDE_LINKS . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git)
244245

245246
# Fetch the latest commits, if required
246247
if [ "$FETCH_LAST_COMMIT" = true ]; then

0 commit comments

Comments
 (0)