You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tools/vreduce.v
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ fn main() {
19
19
fp.description('This tool will reduce the code file and try to make the smallest one it can that reproduces the error when the command is executed')
20
20
fp.version(version)
21
21
22
-
error_msg:= fp.string('error_msg', `e`, default_error_msg, 'the error message you want to reproduce, default: \'${default_error_msg}\'')
22
+
error_msg:= fp.string('error_msg', `m`, default_error_msg, 'the error message you want to reproduce, default: \'${default_error_msg}\'')
23
23
mutcommand:= fp.string('command', `c`, default_command, 'the command used to try to reproduce the error, default: \'${default_command}\', will replace PATH with the path of the folder where it is run')
24
24
copy_project:= fp.bool('cp', `p`, false, 'if used v reduce will copy the whole folder of the project')
25
25
timeout:= fp.int('to', `t`, 0, 'sets a timeout for the command, default=0 : no timeout')
0 commit comments