diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-08-05 14:29:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-08-05 14:29:03 +0200 |
commit | 4c93cc56234f34947c94710a7d6940ef327089d4 (patch) | |
tree | e378b5ca4744d3fcd449f8930f4228bd4f02dc3e | |
parent | ff658e286985f4e2c88260affaf23a78e59f4101 (diff) |
Fix mv() diagnostics
-rw-r--r-- | bpkg/utility.cxx | 2 |
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 { |