@@ -64,7 +64,11 @@ export function mainCommand(
6464 . option ( '--project-namespace <namespace>' , 'A prefix to prepend to all module definitions in the current index' )
6565 . option ( '--cwd <path>' , 'working directory for executing scip-python' , process . cwd ( ) )
6666 . option ( '--target-only <path>' , 'limit analysis to the following path' )
67- . option ( '--output <path>' , 'path to the output file' , DEFAULT_OUTPUT_FILE )
67+ . option (
68+ '--output <path>' ,
69+ 'Path to the output file. If this path is relative, it is interpreted relative to the value for --cwd.' ,
70+ DEFAULT_OUTPUT_FILE
71+ )
6872 . option ( '--quiet' , 'run without logging and status information' , false )
6973 . option (
7074 '--show-progress-rate-limit <limit>' ,
@@ -85,7 +89,11 @@ export function mainCommand(
8589 . option ( '--only <name>' , 'only generate snapshots for <name>' )
8690 . requiredOption ( '--project-name <name>' , 'the name of the current project, pypi name if applicable' )
8791 . requiredOption ( '--project-version <version>' , 'the name of the current project, pypi name if applicable' )
88- . option ( '--output <path>' , 'path to the output file' , DEFAULT_OUTPUT_FILE )
92+ . option (
93+ '--output <path>' ,
94+ 'Path to the output file. If this path is relative, it is interpreted relative to the value for --cwd.' ,
95+ DEFAULT_OUTPUT_FILE
96+ )
8997 . option ( '--environment <json-file>' , 'the environment json file (experimental)' )
9098 . option ( '--no-index' , 'skip indexing (use existing index.scip)' )
9199 . option ( '--quiet' , 'run without logging and status information' , false )
0 commit comments