mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
fix: git-standup find error (tj#1106) (#1110)
This commit is contained in:
parent
5020890c34
commit
58c5b50514
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue