Skip to content

Commit

Permalink
Merge pull request #71 from goblint/exp-arg-enabled
Browse files Browse the repository at this point in the history
Rename `exp.arg` → `exp.arg.enabled`
  • Loading branch information
karoliineh authored Jun 18, 2024
2 parents b042082 + 53ea325 commit f1ece37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/goblintserver/GoblintServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private String[] constructGoblintRunCommand() {
"--set", "server.unix-socket", new File(getGoblintSocket()).getAbsolutePath()
};
if (configuration.enableAbstractDebugging()) {
command = ArrayUtils.addAll(command, "--enable", "exp.arg");
command = ArrayUtils.addAll(command, "--enable", "exp.arg.enabled");
}
return command;
}
Expand Down

0 comments on commit f1ece37

Please sign in to comment.