From 37b53cceda4bd4fc3467e7dffaa9b34978401727 Mon Sep 17 00:00:00 2001 From: Dylan Murray Date: Fri, 16 Feb 2024 11:47:57 -0500 Subject: [PATCH] Update cli-run.adoc to fix analyze CLI commands --- docs/topics/cli-run.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/cli-run.adoc b/docs/topics/cli-run.adoc index d8e7bd37e8..41930da340 100644 --- a/docs/topics/cli-run.adoc +++ b/docs/topics/cli-run.adoc @@ -15,7 +15,7 @@ You can run {ProductShortName} against your application. + [source,terminal,subs="attributes+"] ---- -$ ./{mta-cli} --input /path/to/jee-example-app-1.0.0.ear \ +$ ./{mta-cli} analyze --input /path/to/jee-example-app-1.0.0.ear \ --output /path/to/output --source weblogic --target eap:6 \ --packages com.acme org.apache ---- @@ -52,7 +52,7 @@ The following command analyzes the `org.jboss.seam` packages of the link:https:/ [source,terminal,subs="attributes+"] ---- -$ <{ProductShortName}_HOME>/{mta-cli} --sourceMode --input /path/to/seam-booking-5.2/ \ +$ <{ProductShortName}_HOME>/{mta-cli} analyze --sourceMode --input /path/to/seam-booking-5.2/ \ --output /path/to/report-output/ --target eap:6 --packages org.jboss.seam ---- [] @@ -63,7 +63,7 @@ The following command analyzes the `com.acme` and `org.apache` packages of the l [source,terminal,subs="attributes+"] ---- -$ <{ProductShortName}_HOME>/{mta-cli} --input /path/to/jee-example-app-1.0.0.ear \ +$ <{ProductShortName}_HOME>/{mta-cli} analyze --input /path/to/jee-example-app-1.0.0.ear \ --output /path/to/report-output/ \ --target eap:7 --target cloud-readiness --packages com.acme org.apache ----