From 5e64673025351660b27ad61e215ef38a8f033c85 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 20 Feb 2022 14:32:34 +0000 Subject: added bootstrapping --- src/xi.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/xi.sh') diff --git a/src/xi.sh b/src/xi.sh index afff70f..e00e68d 100755 --- a/src/xi.sh +++ b/src/xi.sh @@ -47,6 +47,7 @@ done . ${LIBDIR}/query.sh . ${LIBDIR}/sync.sh . ${LIBDIR}/install.sh +. ${LIBDIR}/bootstrap.sh . ${LIBDIR}/get.sh shift $((OPTIND-1)) @@ -70,10 +71,19 @@ else shift files $@ ;; + "keyimport") + shift + set -o noglob + keyimport $@ + ;; "file") shift file $@ ;; + "bootstrap") + shift + bootstrap $@ + ;; *) $DO_SYNC && sync fetch $@ -- cgit v1.2.1