diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-27 20:40:58 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-27 20:40:58 +0000 |
commit | e5a02ac6b33213b3b80d9c99163cd5860ba6dc6a (patch) | |
tree | ac86cba7fe46283252b35d0fab8a8a6226ca9c7d /kiss | |
parent | 37c8b555e118ca707c7c952572b5febf1aa2e2e4 (diff) | |
download | cpt-e5a02ac6b33213b3b80d9c99163cd5860ba6dc6a.tar.gz |
kiss: Don't store manifests in repositories.
FossilOrigin-Name: 924dfebfe57697b5f74c0c5daeaec6f68c158c0d5cd419d43ee461084f662090
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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." \ |