aboutsummaryrefslogtreecommitdiff
path: root/bpkg/manifest-utility.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-20 11:32:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-20 11:32:16 +0200
commitc2c315f45f3e0980af1af9bd90c09696c159fd8c (patch)
tree0d83c476cc145d6db5027554069c682da51de35d /bpkg/manifest-utility.cxx
parent96c8d4543f45bece46e738e5deb0566db20843b7 (diff)
Use 12 instead of 16-character abbreviated hash
This should help a bit with long paths on Windows.
Diffstat (limited to 'bpkg/manifest-utility.cxx')
-rw-r--r--bpkg/manifest-utility.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx
index 4a7d0db..10a1512 100644
--- a/bpkg/manifest-utility.cxx
+++ b/bpkg/manifest-utility.cxx
@@ -146,7 +146,7 @@ namespace bpkg
case repository_type::git:
{
- return dir_path (sha256 (l.canonical_name ()).abbreviated_string (16));
+ return dir_path (sha256 (l.canonical_name ()).abbreviated_string (12));
}
}