1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-11 07:22:24 +02:00

Merge pull request from MrTimscampi/headless-fix

Fix usage of command-line on non-headless systems
This commit is contained in:
cyian-1756 2018-04-03 10:43:14 -04:00 committed by GitHub
commit 90375acee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -47,7 +47,7 @@ public class App {
System.exit(0);
}
if (GraphicsEnvironment.isHeadless()) {
if (GraphicsEnvironment.isHeadless() || args.length > 0) {
handleArguments(args);
} else {
if (SystemUtils.IS_OS_MAC_OSX) {