Skip to content
Snippets Groups Projects
Commit c015b83d authored by loki der quaeler's avatar loki der quaeler Committed by loki der quaeler
Browse files

TLC argument processing fails if -generateSpecTE is last argument

. Discovered while working with the VS Code extension code.

[Bug][Tools]
parent 245a888e
No related branches found
No related tags found
No related merge requests found
...@@ -415,7 +415,7 @@ public class TLC { ...@@ -415,7 +415,7 @@ public class TLC {
TLCGlobals.tool = true; TLCGlobals.tool = true;
if (args[index].equals("nomonolith")) { if ((index < args.length) && args[index].equals("nomonolith")) {
index++; index++;
avoidMonolithSpecTECreation = true; avoidMonolithSpecTECreation = true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment