improve conflink outdated detection
[distro-setup] / conflink
index 0dffc229e80b1b662c75fc8a0a6098008efebb88..42c811a6437f16b9e195b1fded71eb3516826efe 100755 (executable)
--- a/conflink
+++ b/conflink
@@ -1,6 +1,9 @@
 #!/bin/bash
 
 source /a/bin/errhandle/err
+_errcatch_cleanup() {
+  echo 1 >~/.local/conflink
+}
 
 
 usage() {
@@ -21,8 +24,12 @@ m() {
 s() { sudo "$@"; }
 
 lnf() { /a/exe/lnf "$@"; }
-if [[ $1 == -f ]]; then
+if [[ $1 == -f ]]; then # f for fast
   lnf() { ln -sf "$@"; }
+elif
+  [[ $1 ]]; then
+  echo "error: unrecognized arguments" >&2
+  exit 0
 fi
 
 shopt -s nullglob
@@ -141,3 +148,9 @@ case $user in
     echo "$0: error: unexpected user"; exit 1
     ;;
 esac
+
+f=/a/bin/distro-setup/system-status
+if [[ -x $f ]]; then
+  $f _
+fi
+echo 0 >~/.local/conflink