File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,8 @@ impl Args {
68
68
. group ( ArgGroup :: new ( "expr_or_loop" )
69
69
. args ( [ "expr" , "loop" ] )
70
70
)
71
- /*
72
- Options that impact the script being executed.
73
- */
71
+
72
+ // Options that impact the script being executed.
74
73
. arg ( Arg :: new ( "cargo-output" )
75
74
. help ( "Show output from cargo when building" )
76
75
. short ( 'c' )
@@ -111,13 +110,10 @@ impl Args {
111
110
. requires ( "expr_or_loop" )
112
111
)
113
112
114
- /*
115
- Options that change how rust-script itself behaves, and don't alter what the script will do.
116
- */
113
+ // Options that change how rust-script itself behaves, and don't alter what the script will do.
117
114
. arg ( Arg :: new ( "clear-cache" )
118
115
. help ( "Clears out the script cache" )
119
116
. long ( "clear-cache" )
120
- . exclusive ( true )
121
117
. action ( ArgAction :: SetTrue ) ,
122
118
)
123
119
. arg ( Arg :: new ( "force" )
You can’t perform that action at this time.
0 commit comments