don't error out silently on git rev-parse

This commit is contained in:
Owen Rafferty 2022-05-20 14:18:34 -05:00 committed by git-bruh
parent c6c851b645
commit 6887884127
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -1577,7 +1577,7 @@ pkg_update() {
# Update each repository in '$KISS_PATH'.
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
# Get the Git repository root directory.
@ -1717,7 +1717,7 @@ pkg_help_ext() {
#
# This also removes any duplicates found in '$PATH', picking the
# first match.
for path do
for path do
p=${path#*/kiss-}
case " $seen " in *" $p "*)