@@ -64,7 +64,11 @@ export function mainCommand(
64
64
. option ( '--project-namespace <namespace>' , 'A prefix to prepend to all module definitions in the current index' )
65
65
. option ( '--cwd <path>' , 'working directory for executing scip-python' , process . cwd ( ) )
66
66
. 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
+ )
68
72
. option ( '--quiet' , 'run without logging and status information' , false )
69
73
. option (
70
74
'--show-progress-rate-limit <limit>' ,
@@ -85,7 +89,11 @@ export function mainCommand(
85
89
. option ( '--only <name>' , 'only generate snapshots for <name>' )
86
90
. requiredOption ( '--project-name <name>' , 'the name of the current project, pypi name if applicable' )
87
91
. 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
+ )
89
97
. option ( '--environment <json-file>' , 'the environment json file (experimental)' )
90
98
. option ( '--no-index' , 'skip indexing (use existing index.scip)' )
91
99
. option ( '--quiet' , 'run without logging and status information' , false )
0 commit comments