From f63777b97852e47ae689738a6571b1fcaad8c8ed Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Sat, 1 Feb 2025 20:49:05 +0100 Subject: [PATCH] Added logs to find out what's going on with Windows --- lib/core/pluginLoader.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/core/pluginLoader.js b/lib/core/pluginLoader.js index 1a5911131..740b09b7f 100644 --- a/lib/core/pluginLoader.js +++ b/lib/core/pluginLoader.js @@ -49,6 +49,8 @@ export async function parsePluginNames(options) { return pluginNames; }; + console.log('PluginsDir:' + pluginsDir); + console.log('__dirname:' + __dirname); const files = await readdir(new URL(pluginsDir)); const builtins = files.map(name => path.basename(name, '.js'));