From c282a43dd22aff2a7d696c997df02c7402cf3337 Mon Sep 17 00:00:00 2001
From: Mariano De Achaval <mariano.achaval@mulesoft.com>
Date: Wed, 28 Sep 2022 14:19:38 -0300
Subject: [PATCH] Fix #50. Fixing --file message

---
 .../src/main/scala/org/mule/weave/dwnative/cli/Options.scala  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/native-cli/src/main/scala/org/mule/weave/dwnative/cli/Options.scala b/native-cli/src/main/scala/org/mule/weave/dwnative/cli/Options.scala
index 420cbaf..2a69430 100644
--- a/native-cli/src/main/scala/org/mule/weave/dwnative/cli/Options.scala
+++ b/native-cli/src/main/scala/org/mule/weave/dwnative/cli/Options.scala
@@ -56,10 +56,10 @@ object Options {
       .longOpt(FILE)
       .hasArg()
       .argName("file-path")
-      .desc("Specifies output file for the transformation if not standard output will be used.")
+      .desc("Specifies the DataWeave file path to execute.")
       .build())
     
-    options.addOption(null, EVAL, false, "Evaluates the script instead of writing it.")
+    options.addOption(null, EVAL, false, "Executes the script but it doesn't use the writer. This is useful when launching a webserver.")
     
     options.addOption(null, VERSION, false, "The version of the CLI and Runtime.")