kiss: remove case statement

This commit is contained in:
Dylan Araps 2021-07-02 12:32:30 +00:00
parent 7d50b6ec9d
commit 9456b9902c
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 38 additions and 39 deletions

13
kiss
View File

@ -1353,17 +1353,18 @@ pkg_updates() {
printf 'Skipping repository, not a directory\n'
continue
}
cd "$repo"
case $(git remote 2>/dev/null) in
"")
git remote >/dev/null 2>&1 || {
log "$repo" " "
printf 'Skipping git pull, not a repository\n'
;;
continue
}
*)
# Go to the repository's root directory.
cd "$(git rev-parse --show-toplevel)"
git_root=$(git rev-parse --show-toplevel)
cd "${git_root:?"failed to find git root for '$PWD'"}"
# Go to the real root directory if this is a submodule.
git_root=$(git rev-parse --show-superproject-working-tree)
@ -1401,8 +1402,6 @@ pkg_updates() {
as_root git submodule update --remote --init -f
fi
}
;;
esac
done
log "Checking for new package versions"