mirror of
https://github.com/rife2/bld
synced 2026-02-20 15:13:42 +01:00
Don't log missing module/main class when silent
This commit is contained in:
parent
51a3f1162e
commit
f5dfb11e4e
|
|
@ -49,7 +49,7 @@ public class RunOperation extends AbstractProcessOperation<RunOperation> {
|
|||
else if (mainClass() != null && !mainClass().isEmpty()){
|
||||
args.add(mainClass());
|
||||
}
|
||||
else {
|
||||
else if (!silent()) {
|
||||
System.err.println("No main class or module specified.");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue