Skip to content

Commit

Permalink
fix: git-standup find error (#1106)
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-- committed Nov 12, 2023
1 parent 5020890 commit 7e67dd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/git-standup
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e67dd3

Please sign in to comment.