pi-goosedump 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -233,7 +233,7 @@ function missingContextId(action: string): AgentToolResult<void> {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
function runGoosedump(args: string[]): string {
|
|
236
|
-
return execFileSync(
|
|
236
|
+
return execFileSync('node', [binaryPath(), ...args], {
|
|
237
237
|
encoding: 'utf-8',
|
|
238
238
|
});
|
|
239
239
|
}
|