We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d8b18 commit 66a43f1Copy full SHA for 66a43f1
src/utils/getRuntimeExecutableForIde.ts
@@ -16,11 +16,17 @@ async function findGlobalPackagePath(packageName: string) {
16
: `which ${packageName}`;
17
const { stdout } = await execAsync(command);
18
19
+ Logger.verbose(
20
+ `Searching for ${packageName} globally. Executed command: ${command}. Output: ${stdout}`,
21
+ );
22
+
23
const path = stdout?.trim().split('\n')[0];
24
25
if (path) {
26
console.log(
27
`Global installation path for ${packageName}: ${path.trim()}`,
28
);
29
+ return path;
30
}
31
return undefined;
32
} catch (error) {
0 commit comments