From 1439b1468682e1197678772f6ad043159dd711b1 Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Thu, 31 Aug 2017 13:42:26 +0200 Subject: [PATCH] tell sort to ignore case --- doc/generate_authors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/generate_authors.sh b/doc/generate_authors.sh index bd770e7..aefcb6e 100755 --- a/doc/generate_authors.sh +++ b/doc/generate_authors.sh @@ -1,6 +1,6 @@ #!/bin/sh -GENLIST=$(git shortlog -s -n | cut -f2 | sort) +GENLIST=$(git shortlog -s -n | cut -f2 | sort -f) AUTHORSFILE="$(dirname $0)/../AUTHORS" TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile"