File tree Expand file tree Collapse file tree
src/main/java/com/regnosys/rosetta/generator/python Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7272 * <li><b>-v, --version <version></b>: Version number for the generated
7373 * package, in <code>#.#.#</code> format (defaults to
7474 * <code>0.0.0</code>)</li>
75- * <li><b>-n , --project-name <projectName></b>: Override the
75+ * <li><b>-p , --project-name <projectName></b>: Override the
7676 * <code>pyproject.toml</code> project name (defaults to
7777 * <code>python-<first-namespace-segment></code>)</li>
7878 * <li><b>-e, --allow-errors</b>: Continue generation even if validation
@@ -146,7 +146,7 @@ public final int run(String[] args) {
146146 .desc ("Target Python directory (default: ./python)" ).hasArg ().build ();
147147 Option allowErrorsOpt = Option .builder ("e" ).longOpt ("allow-errors" ).desc ("Continue even if there are validation errors" ).build ();
148148 Option failOnWarningsOpt = Option .builder ("w" ).longOpt ("fail-on-warnings" ).desc ("Fail if there are validation warnings" ).build ();
149- Option projectNameOpt = Option .builder ("n " ).longOpt ("project-name" ).argName ("projectName" )
149+ Option projectNameOpt = Option .builder ("p " ).longOpt ("project-name" ).argName ("projectName" )
150150 .desc ("Override the pyproject.toml project name (default: python-<first-namespace-segment>)" )
151151 .hasArg ().build ();
152152 Option versionOpt = Option .builder ("v" ).longOpt ("version" ).argName ("version" )
You can’t perform that action at this time.
0 commit comments