aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-08-05 14:29:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-08-05 14:29:03 +0200
commit4c93cc56234f34947c94710a7d6940ef327089d4 (patch)
treee378b5ca4744d3fcd449f8930f4228bd4f02dc3e /bpkg/utility.cxx
parentff658e286985f4e2c88260affaf23a78e59f4101 (diff)
Fix mv() diagnostics
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index 9c9c991..df663c9 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -246,7 +246,7 @@ namespace bpkg
mv (const dir_path& from, const dir_path& to)
{
if (verb >= 3)
- text << "mv " << from << " to " << to; // Prints trailing slashes.
+ text << "mv " << from << ' ' << to; // Prints trailing slashes.
try
{