Skip to content

Commit

Permalink
Rename exp.arg -> exp.arg.enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 authored May 27, 2024
1 parent b042082 commit 53ea325
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 53ea325

Please sign in to comment.