update_unicode.sh: pin the uniset repo to a known good commit

The uniset upstream has added more commits that for example change the hexadecimal output in '--32' mode to decimal. Let's pin the repo to a commit that still outputs the width tables in the format we want. Signed-off-by: Beat Bolli <dev+git@drbeat.li> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Beat Bolli committed Dec 14, 2016 at 00:31 UTC 3f0a386309402c4a4b07f1c228e61023fbac3566
1 file changed +2 -1
contrib/update-unicode/update_unicode.sh
+2 -1
@@ -15,7 +15,8 @@ if ! test -f EastAsianWidth.txt; then
15 wget http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt
16 fi &&
17 if ! test -d uniset; then
18 - git clone https://github.com/depp/uniset.git
18 + git clone https://github.com/depp/uniset.git &&
19 + ( cd uniset && git checkout 4b186196dd )
20 fi &&
21 (
22 cd uniset &&