aboutsummaryrefslogtreecommitdiff
path: root/contrib/kiss-changelog
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-05-15 10:27:38 +0000
committermerakor <cem@ckyln.com>2020-05-15 10:27:38 +0000
commit16d89890200d7745ef0ec1999b9098bf6eb4dabc (patch)
tree2b8a5d383e10f86163277438ea49c95bc8efaec9 /contrib/kiss-changelog
parentd88c7c3f97baa5abbb5e7827712c99f10b82c25b (diff)
downloadcpt-16d89890200d7745ef0ec1999b9098bf6eb4dabc.tar.gz
contrib: move some utilities to kiss-extra
FossilOrigin-Name: 5fdd54935c99b2416dfc244cf838092ba03423c21c647d74221e65c66923b5e3
Diffstat (limited to 'contrib/kiss-changelog')
-rwxr-xr-xcontrib/kiss-changelog11
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/kiss-changelog b/contrib/kiss-changelog
deleted file mode 100755
index ed323d8..0000000
--- a/contrib/kiss-changelog
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -e
-# Print the git log of the specific package
-
-case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac
-
-kiss s "$1" >/dev/null
-cd "$(kiss s "$1" | sed 1q)"
-
-# Pipe to cat so it doesn't automatically paged
-# by git.
-git log --format='<%as> [%an] %s - %h' . | cat