aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar John Cater <jcater@google.com>2017-01-05 20:26:48 +0000
committerGravatar John Cater <jcater@google.com>2017-01-05 21:11:00 +0000
commitb64349e91debe8abb8a218c6e8888dc9b42fdea3 (patch)
tree104b2c6f68b770c3c854e17d25561b83b9c80e0e /src
parent7be337f50d7b14205c56ec75d86bd9a7e835fbe5 (diff)
Use _ instead of $ on Windows to avoid shell expansion issues.
Fixes #2342. -- Change-Id: I4e6511a5d65a534757bdb6b4b05c9e1bd43ad2d8 Reviewed-on: https://cr.bazel.build/8093 PiperOrigin-RevId: 143695463 MOS_MIGRATED_REVID=143695463
Diffstat (limited to 'src')
-rw-r--r--src/main/cpp/blaze_util_windows.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/cpp/blaze_util_windows.cc b/src/main/cpp/blaze_util_windows.cc
index f7bf757655..ad490d8968 100644
--- a/src/main/cpp/blaze_util_windows.cc
+++ b/src/main/cpp/blaze_util_windows.cc
@@ -1056,7 +1056,7 @@ string GetHashedBaseDir(const string& root, const string& hashable) {
static const char* alphabet
// Exactly 64 characters.
- = "abcdefghigklmnopqrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ0123456789$-";
+ = "abcdefghigklmnopqrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ0123456789_-";
// The length of the resulting filename (8 characters).
static const int filename_length = blaze_util::Md5Digest::kDigestLength / 2;