aboutsummaryrefslogtreecommitdiff
path: root/bdep/sync.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-08-22 22:08:16 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-08-22 22:08:16 +0300
commit8b7ee409621b50c1f741188f21f18f98d47e63af (patch)
tree42457d4d59de0dd255494cf41080058334771652 /bdep/sync.cxx
parentbb08cf0b2a2b3a8a9a52d53e6fb4813ac1fa487c (diff)
Quote directory paths in buildspecs
Diffstat (limited to 'bdep/sync.cxx')
-rw-r--r--bdep/sync.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/sync.cxx b/bdep/sync.cxx
index 7599148..25431d6 100644
--- a/bdep/sync.cxx
+++ b/bdep/sync.cxx
@@ -442,8 +442,8 @@ namespace bdep
dir_path out (dir_path (cfg) /= pkg.name.string ());
run_b (co,
o,
- src.representation () + '@' + out.representation () +
- ",forward");
+ "'" + src.representation () + "'@'" + out.representation () +
+ "',forward");
}
}
}