aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index d80e55e..652cd46 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -22,8 +22,12 @@ namespace bpkg
const dir_path empty_dir_path;
const dir_path bpkg_dir (".bpkg");
- const dir_path certs_dir (dir_path (bpkg_dir) /= "certificates");
- const dir_path repos_dir (dir_path (bpkg_dir) /= "repositories");
+
+ // Keep these directory names short, lowering the probability of hitting the
+ // path length limit on Windows.
+ //
+ const dir_path certs_dir (dir_path (bpkg_dir) /= "certs");
+ const dir_path repos_dir (dir_path (bpkg_dir) /= "repos");
const dir_path current_dir (".");