Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
kiss: Don't store manifests in repositories.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Jun 27, 2019
1 parent 2e63086 commit 69e31b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiss
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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." \
Expand Down

0 comments on commit 69e31b8

Please sign in to comment.