1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v2: checker: fix filter()

This commit is contained in:
Alexander Medvednikov
2020-02-27 16:51:39 +01:00
parent b580a497fe
commit b1357d9641
2 changed files with 22 additions and 17 deletions

View File

@@ -20,6 +20,7 @@ fn launch_tool(is_verbose bool, tname string, cmdname string) {
tname_index = os.args.len
}
mut compilation_options := os.args[1..tname_index].clone()
//f := os.args.join(' ')
tool_args := os.args[1..].join(' ')
tool_exe := path_of_executable(os.realpath('$vroot/cmd/tools/$tname'))
tool_source := os.realpath('$vroot/cmd/tools/${tname}.v')