Skip to content

Commit 5d2f1e3

Browse files
committed
fix(cli): fix runtime copy
1 parent 280489a commit 5d2f1e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5200,7 +5200,7 @@ int main (int argc, char* argv[]) {
52005200
fs::copy(
52015201
SOCKET_HOME_API,
52025202
pathResources / "socket",
5203-
fs::copy_options::update_existing | fs::copy_options::recursive | fs::copy_options::copy_symlinks
5203+
fs::copy_options::update_existing | fs::copy_options::recursive
52045204
);
52055205

52065206
// XXX(@jwerle): 'node_modules/' sometimes can be found in the

src/runtime/core/services/conduit.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ namespace ssc::runtime::core::services {
314314
});
315315
}
316316

317-
debug("added client: %lu", client->id);
317+
// debug("added client: %lu", client->id);
318318
this->clients.emplace(client->id, client);
319319

320320
// std::cout << "added client " << this->clients.size() << std::endl;

0 commit comments

Comments
 (0)