File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/InEngine.Core/Commands Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ namespace InEngine.Core.Commands
99 public class Echo : AbstractCommand
1010 {
1111 [ Option ( "text" , HelpText = "The text to echo." ) ]
12- public string Text { get ; set ; }
12+ public string VerbatimText { get ; set ; }
1313
1414 public override void Run ( )
1515 {
16- Write . Line ( Text ) ;
16+ Write . Line ( VerbatimText ) ;
1717 }
1818 }
1919}
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ namespace InEngine.Core.Commands
55{
66 public class Options : IOptions
77 {
8- [ VerbOption ( "null " , HelpText = "Always fail. Useful for end-to-end testing." ) ]
8+ [ VerbOption ( "fail " , HelpText = "Always fail. Useful for end-to-end testing." ) ]
99 public AlwaysFail AlwaysFail { get ; set ; }
1010
1111 [ VerbOption ( "echo" , HelpText = "Echo some text to the console. Useful for end-to-end testing." ) ]
1212 public Echo Echo { get ; set ; }
1313
14- [ VerbOption ( "null " , HelpText = "A null operation command. Literally does nothing." ) ]
14+ [ VerbOption ( "succeed " , HelpText = "A null operation command. Literally does nothing." ) ]
1515 public AlwaysSucceed Null { get ; set ; }
1616
1717 public string GetUsage ( string verb )
You can’t perform that action at this time.
0 commit comments