diff options
author | davidovski <david@davidovski.xyz> | 2022-02-20 14:32:34 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-20 14:32:34 +0000 |
commit | 5e64673025351660b27ad61e215ef38a8f033c85 (patch) | |
tree | 87f8f11c38a447835e546fc8c579308e88d4ebee /src/xi.sh | |
parent | 8f02115e50573be0a5c6653f2a4a2bb6d7459911 (diff) |
added bootstrapping
Diffstat (limited to 'src/xi.sh')
-rwxr-xr-x | src/xi.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 $@ |