commit 69e31b82aae3baaa766548d67f8ae4b89c80a3ef
parent 2e630862af32d1d57cf7fbd487eb8dfee612efae
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Thu, 27 Jun 2019 23:40:59 +0300
kiss: Don't store manifests in repositories.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kiss b/kiss
@@ -141,7 +141,7 @@ pkg_manifest() {
# Store the file and directory list of the package.
# Directories have a trailing '/' and the list is sorted in reverse.
(cd "$pkg_dir" && find ./* -type d -exec printf '%s/\n' {} + -or -print) |
- sort -r | sed -e ss.ss | tee manifest > "$pkg_db/$name/manifest"
+ sort -r | sed -e ss.ss > "$pkg_db/$name/manifest"
}
pkg_tar() {
@@ -284,7 +284,7 @@ args() {
l*) pkg_list "$2" ;;
r*) pkg_remove "${2-null}" || die "Package '${2-null}' not installed." ;;
u*) pkg_updates ;;
- v*) log "$kiss 0.1.8" ;;
+ v*) log "$kiss 0.1.9" ;;
*) log "$kiss [b|c|i|l|r|u] [pkg]" \
"build: Build a package." \