mirror of
https://github.com/rife2/bld
synced 2025-12-20 08:38:37 +01:00
Log missing main class or module when running. Closes #69
This commit is contained in:
parent
f4db05581b
commit
f33108a3f0
|
|
@ -49,6 +49,9 @@ public class RunOperation extends AbstractProcessOperation<RunOperation> {
|
|||
else if (mainClass() != null && !mainClass().isEmpty()){
|
||||
args.add(mainClass());
|
||||
}
|
||||
else if (!silent()) {
|
||||
System.err.println("No main class or module specified.");
|
||||
}
|
||||
|
||||
args.addAll(runOptions());
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue