|
|
|
@ -5,12 +5,13 @@
@@ -5,12 +5,13 @@
|
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
|
|
|
# |
|
|
|
|
|
|
|
|
|
if [[ "$PWD" != "$(git-root)" ]]; then |
|
|
|
|
print "$0: must be run from the root of the working tree" >&2 |
|
|
|
|
if ! is-true "$(git rev-parse --is-inside-work-tree 2> /dev/null)"; then |
|
|
|
|
print "$0: not a repository work tree: $PWD" >&2 |
|
|
|
|
return 1 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
if ! git config --file .gitmodules --get "submodule.${1}.path" &>/dev/null; then |
|
|
|
|
elif [[ "$PWD" != "$(git-root)" ]]; then |
|
|
|
|
print "$0: must be run from the root of the work tree" >&2 |
|
|
|
|
return 1 |
|
|
|
|
elif ! git config --file .gitmodules --get "submodule.${1}.path" &>/dev/null; then |
|
|
|
|
print "$0: submodule not found: $1" >&2 |
|
|
|
|
return 1 |
|
|
|
|
fi |
|
|
|
|