Skip to content

Commit 8b95391

Browse files
committed
adds strict command line switch
1 parent 3ecc471 commit 8b95391

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/package.json
77
/build/
88
/node_modules/
9+
/.m2/

com.minres.coredsl/src/com/minres/coredsl/validator/Main.xtend

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ class Main implements Callable<Integer> {
3636
@Option(names=#["-v", "--verbose"], description="verbose output")
3737
public Boolean verbose = false;
3838

39+
@Option(names=#["-w", "--strict"], description="verbose output")
40+
public Boolean strict = false;
41+
3942
def static main(String[] args) {
4043
val ret = new CommandLine(new Main()).execute(args);
4144
System.exit(ret)

0 commit comments

Comments
 (0)