Skip to content

Commit

Permalink
Bootstrap should pass apply command to Runner
Browse files Browse the repository at this point in the history
  • Loading branch information
bulenkov committed Jul 11, 2016
1 parent 628d78d commit 35b9996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updater/src/com/intellij/updater/Bootstrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void main(String[] args) throws

final Class<?> runner = Bootstrap.class.getClassLoader().loadClass("com.intellij.updater.Runner");
final Method main = runner.getMethod("main", String[].class);
main.invoke(null, (Object) args);
main.invoke(null, (Object)new String[]{"apply", args[0]});
}

private static void cleanUp() {
Expand Down

0 comments on commit 35b9996

Please sign in to comment.