commit 2bb1bbcc0aa9b6854a3ed631ad73cea1510082a7
parent 5a73b17a99088738c2d69738c4d37687c488a24e
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Sat, 18 Jan 2020 11:28:50 +0200
kiss: Fix git checksums
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kiss b/kiss
@@ -599,7 +599,7 @@ pkg_checksums() {
# File is a git repository.
elif [ -z "${src##git+*}" ]; then
- printf '%-64s %s\n' git "${src##*/}"
+ printf 'git %s\n' "$src"
continue
# Die here if source for some reason, doesn't exist.
@@ -1096,7 +1096,7 @@ args() {
;;
v|version|-v|--version)
- log kiss 0.60.0
+ log kiss 0.60.1
;;
h|help|-h|--help|'')