1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-09-28 12:22:39 -06:00

kiss: Remove dependency on tac

This commit is contained in:
Dylan Araps 2019-06-16 17:59:09 +03:00
parent 9582dfac6b
commit 4c760b0a0e
2 changed files with 1 additions and 2 deletions

View File

@ -41,7 +41,6 @@ Full list of dependencies.
- `sed`
- `sh`
- `sha256sum`
- `tac`
- `tar`
- `tee`
- `wget`

2
kiss
View File

@ -125,7 +125,7 @@ pkg_strip() {
}
pkg_manifest() {
(cd "$pkg_dir" && find ./*) | sed ss.ss | tac |
(cd "$pkg_dir" && find ./*) | sed -e ss.ss -e '1!G;h;$!d' |
tee manifest > "$pkg_db/$name/manifest"
}