Skip to content

Commit 162191e

Browse files
committed
fix: fix compile
1 parent 8c52c22 commit 162191e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lse/PluginManager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ ll::Expected<> PluginManager::load(ll::mod::Manifest manifest) {
7575
PythonHelper::getPluginPackDependencyFilePath(ll::string_utils::u8str2str(dirPath.u8string()));
7676
if (!dependTmpFilePath.empty()) {
7777
int exitCode = 0;
78-
lse::getSelfPluginInstance().getLogger().info("Executing \" pip install \" for plugin {name}..."_tr(
78+
lse::getSelfPluginInstance().getLogger().info("Executing \"pip install\" for plugin {name}..."_tr(
7979
fmt::arg("name", ll::string_utils::u8str2str(dirPath.filename().u8string()))
8080
));
8181

@@ -106,7 +106,7 @@ ll::Expected<> PluginManager::load(ll::mod::Manifest manifest) {
106106
if (NodeJsHelper::doesPluginPackHasDependency(ll::string_utils::u8str2str(dirPath.u8string()))
107107
&& !std::filesystem::exists(std::filesystem::path(dirPath) / "node_modules")) {
108108
int exitCode = 0;
109-
lse::getSelfPluginInstance().getLogger().info("Executing " npm install " for plugin {name}..."_tr(
109+
lse::getSelfPluginInstance().getLogger().info("Executing \"npm install\" for plugin {name}..."_tr(
110110
fmt::arg("name", ll::string_utils::u8str2str(dirPath.filename().u8string()))
111111
));
112112
if ((exitCode = NodeJsHelper::executeNpmCommand("npm install", ll::string_utils::u8str2str(dirPath.u8string())))

0 commit comments

Comments
 (0)