aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-27 20:40:58 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-27 20:40:58 +0000
commite5a02ac6b33213b3b80d9c99163cd5860ba6dc6a (patch)
treeac86cba7fe46283252b35d0fab8a8a6226ca9c7d /kiss
parent37c8b555e118ca707c7c952572b5febf1aa2e2e4 (diff)
downloadcpt-e5a02ac6b33213b3b80d9c99163cd5860ba6dc6a.tar.gz
kiss: Don't store manifests in repositories.
FossilOrigin-Name: 924dfebfe57697b5f74c0c5daeaec6f68c158c0d5cd419d43ee461084f662090
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss4
1 files changed, 2 insertions, 2 deletions
diff --git a/kiss b/kiss
index 26a7977..532a81e 100755
--- 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." \