We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 978b208 commit 0544cc1Copy full SHA for 0544cc1
1 file changed
src/main/java/org/codejive/jpm/Main.java
@@ -348,6 +348,11 @@ private static void printStats(SyncStats stats) {
348
* @param args The command line arguments.
349
*/
350
public static void main(String... args) {
351
+ if (args.length == 0) {
352
+ System.err.println(
353
+ "Running 'jpm search --interactive', try 'jpm --help' for more options");
354
+ args = new String[] {"search", "--interactive"};
355
+ }
356
new CommandLine(new Main()).execute(args);
357
}
358
0 commit comments