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 07e6d15 commit 8300591Copy full SHA for 8300591
src/oclif/commands/run/index.ts
@@ -85,7 +85,7 @@ export default class RunScript extends AICommand {
85
result = result.content
86
}
87
if (!userConfig.interactive && result != null) {
88
- this.log(typeof result === 'string' ? result : cj(result))
+ this.log(typeof result === 'string' || result instanceof String ? '' + result : cj(result))
89
90
return result
91
} catch (error: any) {
0 commit comments