summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeat Bolli <dev+git@drbeat.li>2016-12-13 23:31:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-14 00:12:48 (GMT)
commit3f0a386309402c4a4b07f1c228e61023fbac3566 (patch)
tree4ab3091dbbb79b57c91c4604ac8153b1cd68d2af
parentb79e28e3701e83ba19d3b11ada4cc2bbdfaf8c29 (diff)
downloadgit-3f0a386309402c4a4b07f1c228e61023fbac3566.zip
git-3f0a386309402c4a4b07f1c228e61023fbac3566.tar.gz
git-3f0a386309402c4a4b07f1c228e61023fbac3566.tar.bz2
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>
-rwxr-xr-xcontrib/update-unicode/update_unicode.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/update-unicode/update_unicode.sh b/contrib/update-unicode/update_unicode.sh
index ff664ec..9f1bf31 100755
--- a/contrib/update-unicode/update_unicode.sh
+++ b/contrib/update-unicode/update_unicode.sh
@@ -15,7 +15,8 @@ if ! test -f EastAsianWidth.txt; then
wget http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt
fi &&
if ! test -d uniset; then
- git clone https://github.com/depp/uniset.git
+ git clone https://github.com/depp/uniset.git &&
+ ( cd uniset && git checkout 4b186196dd )
fi &&
(
cd uniset &&