Skip to content

Commit f881522

Browse files
committed
Dont need runner version in info
1 parent a75046c commit f881522

File tree

1 file changed

+1
-2
lines changed
  • packages/app/src/cli/commands/app/function

1 file changed

+1
-2
lines changed

packages/app/src/cli/commands/app/function/info.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,16 @@ export default class FunctionInfo extends AppUnlinkedCommand {
4646
outputResult(
4747
JSON.stringify({
4848
functionRunnerPath: functionRunner.path,
49-
functionRunnerVersion: functionRunner.version,
5049
functionInputQueryPath: queryPath,
5150
functionSchemaPath: schemaPath,
5251
functionWasmPath: ourFunction.outputPath,
5352
}),
5453
)
5554
} else {
5655
outputResult(`functionRunnerPath: ${functionRunner.path}`)
57-
outputResult(`functionRunnerVersion: ${functionRunner.version}`)
5856
outputResult(`functionInputQueryPath: ${queryPath}`)
5957
outputResult(`functionSchemaPath: ${schemaPath}`)
58+
outputResult(`functionWasmPath: ${ourFunction.outputPath}`)
6059
}
6160

6261
return {app}

0 commit comments

Comments
 (0)