We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c1c491 commit 2d30bbfCopy full SHA for 2d30bbf
1 file changed
src/main/java/com/yanglb/codegen/core/parser/BaseParser.java
@@ -147,6 +147,11 @@ public ParameterModel parsing() {
147
}
148
149
String[] as = commandLine.getArgs();
150
+ if (as.length > 0 && "update".equals(as[0])) {
151
+ System.out.println("请访问以下连接进行更新");
152
+ System.out.println("https://github.com/excel-code-generator/code-generator");
153
+ return null;
154
+ }
155
if (as.length < 2) {
156
throw new IllegalArgumentException("您输入的参数不正确,请使用 --help 命令查看用法。");
157
0 commit comments