From 608b222426f77730930433e27c355ccf7f0c7326 Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Mon, 30 Sep 2019 19:58:02 -0500 Subject: [PATCH] Updating a bit per comments in #30. --- DEVELOPER.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index becbd7f..333c558 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -21,19 +21,19 @@ BUILD SUCCESSFUL in 2s 6 actionable tasks: 6 executed ``` -This will create the `build` directory and populate with an uber-jar. +This will create the `build` directory and populate with uber-jars in `build/libs`. To run the command-line version of AppleCommander, use the following: * All platforms: - `java -jar AppleCommander-ac-VERSION.jar` + `java -jar build/libs/AppleCommander-ac-VERSION.jar` To launch the GUI version of AppleCommander, use the following: * Linux: - `java -jar AppleCommander-linux64-gtk-VERSION.jar` + `java -jar build/libs/AppleCommander-linux64-gtk-VERSION.jar` * Windows: - `java -jar AppleCommander-win64-VERSION.jar` + `java -jar build/libs/AppleCommander-win64-VERSION.jar` * Mac OS X: `java -XstartOnFirstThread -jar build/libs/AppleCommander-macosx-VERSION.jar`