We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5020890 commit dce1ffbCopy full SHA for dce1ffb
bin/git-standup
@@ -240,7 +240,11 @@ if [[ $in_git_repo != 0 ]]; then
240
## Set delimiter to newline for the loop
241
IFS=$'\n'
242
## Recursively search for git repositories
243
- PROJECT_DIRS=$(find "$INCLUDE_LINKS" . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git)
+ if [ -z "${INCLUDE_LINKS}" ]; then
244
+ PROJECT_DIRS=$(find . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git)
245
+ else
246
+ PROJECT_DIRS=$(find "$INCLUDE_LINKS" . -maxdepth "$MAXDEPTH" -mindepth 0 -name .git)
247
+ fi
248
249
# Fetch the latest commits, if required
250
if [ "$FETCH_LAST_COMMIT" = true ]; then
0 commit comments