aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkiss7
1 files changed, 6 insertions, 1 deletions
diff --git a/kiss b/kiss
index ce4e18b..d9347dc 100755
--- a/kiss
+++ b/kiss
@@ -764,6 +764,11 @@ pkg_updates() {
continue
}
+ [ "$(git remote 2>/dev/null)" ] || {
+ log "[$repo] No remote, skipping"
+ continue
+ }
+
case $repos in
# If the repository has already been updated, skip it.
*" $PWD "*) ;;
@@ -967,7 +972,7 @@ args() {
;;
v|version|-v|--version)
- printf 'kiss 0.20.0\n'
+ printf 'kiss 0.20.1\n'
;;
h|help|-h|--help|'')