diff options
author | Cem Keylan <cem@ckyln.com> | 2020-07-25 11:25:36 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-07-25 11:25:36 +0300 |
commit | 38e3bef4a6acd767f5664c773911f8a97fb3ca09 (patch) | |
tree | e23dc117c86e4a3a00cd3e28b538a79f0f6e69b5 /other | |
parent | 47a3723632b82a0d3caf79dbe8ada1eae60dd976 (diff) | |
download | cpt-extra-38e3bef4a6acd767f5664c773911f8a97fb3ca09.tar.gz |
Diffstat (limited to 'other')
-rwxr-xr-x | other/cpt-changelog | 4 | ||||
-rwxr-xr-x | other/cpt-orphans | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/other/cpt-changelog b/other/cpt-changelog index ed323d8..92a8089 100755 --- a/other/cpt-changelog +++ b/other/cpt-changelog @@ -3,8 +3,8 @@ case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac -kiss s "$1" >/dev/null -cd "$(kiss s "$1" | sed 1q)" +cpt-search "$1" >/dev/null +cd "$(cpt-search --single "$1")" # Pipe to cat so it doesn't automatically paged # by git. diff --git a/other/cpt-orphans b/other/cpt-orphans index fd8b9d1..2616059 100755 --- a/other/cpt-orphans +++ b/other/cpt-orphans @@ -10,12 +10,12 @@ case "$1" in ''|--help|-h) exit 0 esac -cd "$KISS_ROOT/var/db/kiss/installed/" +cd "$CPT_ROOT/var/db/cpt/installed/" for pkg in *; do case $pkg in baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\ - make|busybox|bzip2|grub|kiss|git|linux-headers) + make|busybox|bzip2|grub|cpt|git|linux-headers) continue esac |