forked from kiss-community/kiss
don't error out silently on git rev-parse
This commit is contained in:
parent
c6c851b645
commit
6887884127
4
kiss
4
kiss
@ -1577,7 +1577,7 @@ pkg_update() {
|
|||||||
|
|
||||||
# Update each repository in '$KISS_PATH'.
|
# Update each repository in '$KISS_PATH'.
|
||||||
for repo do
|
for repo do
|
||||||
if git -C "$repo" rev-parse 'HEAD@{upstream}' >/dev/null 2>&1; then
|
if git -C "$repo" rev-parse 'HEAD@{upstream}' >/dev/null; then
|
||||||
repo_type=git
|
repo_type=git
|
||||||
|
|
||||||
# Get the Git repository root directory.
|
# Get the Git repository root directory.
|
||||||
@ -1717,7 +1717,7 @@ pkg_help_ext() {
|
|||||||
#
|
#
|
||||||
# This also removes any duplicates found in '$PATH', picking the
|
# This also removes any duplicates found in '$PATH', picking the
|
||||||
# first match.
|
# first match.
|
||||||
for path do
|
for path do
|
||||||
p=${path#*/kiss-}
|
p=${path#*/kiss-}
|
||||||
|
|
||||||
case " $seen " in *" $p "*)
|
case " $seen " in *" $p "*)
|
||||||
|
Loading…
Reference in New Issue
Block a user