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

utils: add args to launch_tool

This commit is contained in:
Tim Basel
2020-05-28 18:40:09 +02:00
committed by GitHub
parent 28ffe2a6ee
commit 7e538d7401
2 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ fn main_v() {
if args.len == 0 {
println('For usage information, quit V REPL using `exit` and use `v help`')
}
util.launch_tool(false, 'vrepl')
util.launch_tool(false, 'vrepl', os.args[1..])
return
}
args_and_flags := util.join_env_vflags_and_os_args()[1..]
@@ -61,7 +61,7 @@ fn main_v() {
// Note for future contributors: Please add new subcommands in the `match` block below.
if command in simple_cmd {
// External tools
util.launch_tool(prefs.is_verbose, 'v' + command)
util.launch_tool(prefs.is_verbose, 'v' + command, os.args[1..])
return
}
match command {
@@ -69,7 +69,7 @@ fn main_v() {
invoke_help_and_exit(args)
}
'new', 'init' {
util.launch_tool(prefs.is_verbose, 'vcreate')
util.launch_tool(prefs.is_verbose, 'vcreate', os.args[1..])
return
}
'translate' {
@@ -77,7 +77,7 @@ fn main_v() {
return
}
'search', 'install', 'update', 'remove' {
util.launch_tool(prefs.is_verbose, 'vpm')
util.launch_tool(prefs.is_verbose, 'vpm', os.args[1..])
return
}
'get' {