diff options
author | davidovski <david@davidovski.xyz> | 2022-05-28 19:33:12 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-28 19:33:12 +0100 |
commit | fa4ce7ed9fea7f050d3d4ad7fc08daa392b08f95 (patch) | |
tree | b3594358219de59cd4ab5974d716b4308dfdd364 /src | |
parent | 44a5cf53a706ea03d1457350c8cb4f267b6e3481 (diff) | |
parent | 072ec9b4489017b272ff221c19b8af795ef70e47 (diff) |
Merge branch 'master' of git.cheetah.remote:xilinux/xipkg
Diffstat (limited to 'src')
-rwxr-xr-x | src/xi.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -211,6 +211,17 @@ else shift file_info $@ ;; + "info") + shift + for package in $@; do + infofile=${INSTALLED_DIR}/$package/info + [ -f $infofile ] && { + cat $infofile + } || { + printf "Package info for $package could not be found!" + } + done + ;; "verify") shift [ -z "$*" ] && set -- $(ls ${INSTALLED_DIR}) |