diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:41:23 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:41:23 +0100 |
commit | 10a35e3250db3c413e7292fa4d8090a0e61dc5b8 (patch) | |
tree | 8a29a041ebea52a4eec6c1f15c6487fd1cf6ce1a /src/xi.sh | |
parent | 91d36b3760828be97a27f6c1dc61e72075e1e8cd (diff) |
removed idea of repos
Diffstat (limited to 'src/xi.sh')
-rwxr-xr-x | src/xi.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -53,8 +53,10 @@ ${BLUE}Available Commands: ${LIGHT_CYAN}verify that a package's files are intact ${LIGHT_GREEN}list ${LIGHT_CYAN}list available packages - ${LIGHT_GREEN}list-installed + ${LIGHT_GREEN}installed ${LIGHT_CYAN}lists installed packages + ${LIGHT_GREEN}list-installed + ${LIGHT_CYAN}list packages showing the installed ones ${LIGHT_GREEN}file ${LIGHT_BLUE}[path] ${LIGHT_CYAN}shows which package a file belongs to ${LIGHT_GREEN}info ${LIGHT_BLUE}[package] @@ -209,6 +211,9 @@ else "list-installed") list_installed ;; + "installed") + installed + ;; "file") shift file_info $@ @@ -242,6 +247,7 @@ else usage ;; *) + checkroot $DO_SYNC && sync install $@ ;; |