aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zen/cmds/deploy.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/zen/cmds/deploy.cpp b/zen/cmds/deploy.cpp
index d60392dd5..10808d063 100644
--- a/zen/cmds/deploy.cpp
+++ b/zen/cmds/deploy.cpp
@@ -2,6 +2,7 @@
#include "deploy.h"
+#include <zencore/filesystem.h>
#include <zencore/logging.h>
#include <zencore/string.h>
@@ -58,7 +59,7 @@ DeployCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
}
zen::ExtendableStringBuilder<128> Path8;
- zen::WideToUtf8(ToPath.c_str(), Path8);
+ zen::PathToUtf8(ToPath, Path8);
if (IsTargetNew == false && m_IsClean)
{