Add exit code and log msg based on number of found records
[khome.git] / home / lib / login_functions.sh
index 4a266c2..6133181 100644 (file)
@@ -7,6 +7,7 @@ p() {
         '
             BEGIN {_s = tolower(_s)}
 
+            # TODO fzf/dmenu select instead of searching:
             /^[a-zA-Z]/ && tolower($1) ~ _s && NF >= 2 {
                 n++
                 s = $1
@@ -32,6 +33,19 @@ p() {
 
                 printf "%s", p # XXX Intentionally avoiding newline in the result.
             }
+
+            END {
+                if (n == 1) {
+                    exit 0
+                } else if (n == 0) {
+                    printf "[ERROR] Found nothing.\n" > "/dev/stderr"
+                    exit 1
+                } else if (n > 1) {
+                    # TODO fzf-select which of the records the user (ahem, me) wants.
+                    printf "[WARNING] Found more than one record.\n" > "/dev/stderr"
+                    exit 0
+                }
+            }
         ' \
         ~/._p/p \
         | xsel -i -b -t 30000
@@ -363,7 +377,7 @@ gh_clone() {
     mkdir -p "$gh_dir"
     cd "$gh_dir" || kill -INT $$
     gh_fetch_repos "$gh_user_type" "$gh_user_name" \
-    | jq --raw-output '.[] | select(.fork | not) | .git_url' \
+    | jq --raw-output '.[] | select(.fork | not) | .clone_url' \
     | parallel -j 25 \
     git clone {}
 }
This page took 0.033007 seconds and 4 git commands to generate.