Skip to content

v0.2.54..v0.2.55 changeset HootVersionCommand.java

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/controllers/info/HootVersionCommand.java b/hoot-services/src/main/java/hoot/services/controllers/info/HootVersionCommand.java
index 7361395..3a0e4b7 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/info/HootVersionCommand.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/info/HootVersionCommand.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2017 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.controllers.info;
 
@@ -33,7 +33,7 @@ import hoot.services.command.ExternalCommand;
 class HootVersionCommand extends ExternalCommand {
 
     HootVersionCommand(boolean withDetails, Class<?> caller) {
-        String command = withDetails ? "hoot version --debug" : "hoot version";
+        String command = withDetails ? "hoot.bin version --debug" : "hoot.bin version";
         super.configureCommand(command, caller, false);
     }
 }
Clone this wiki locally