Skip to content

Commit

Permalink
Fix typo in script loading method invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganwitt committed Nov 30, 2020
1 parent f97be60 commit 23e5183
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ protected void loadScript(Class<?> consoleClass, Object console) throws Invocati
} else if (project.getProperties().containsKey(consoleScript)) {
consoleScriptFile = new File(project.getProperties().getProperty(consoleScript));
if (consoleScriptFile.isFile()) {
invokeMethod(loadScriptFile, consoleScriptFile);
invokeMethod(loadScriptFile, console, consoleScriptFile);
} else {
getLog().warn("consoleScript ('" + consoleScript + "') doesn't exist in project properties or as a file.");
}
Expand Down

0 comments on commit 23e5183

Please sign in to comment.