Skip to content

Commit

Permalink
use full path for tool exe output
Browse files Browse the repository at this point in the history
  • Loading branch information
JalonSolov committed Nov 1, 2023
1 parent cfa8984 commit d78a2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/util/util.v
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ pub fn launch_tool(is_verbose bool, tool_name string, args []string) {
for emodule in emodules {
check_module_is_installed(emodule, is_verbose) or { panic(err) }
}
mut compilation_command := '${os.quoted_path(vexe)} -o ${tool_name}'
mut compilation_command := '${os.quoted_path(vexe)} -o ${tool_exe}'
if tool_name in ['vself', 'vup', 'vdoctor', 'vsymlink'] {
// These tools will be called by users in cases where there
// is high chance of there being a problem somewhere. Thus
Expand Down

0 comments on commit d78a2c9

Please sign in to comment.