mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
vfmt: make ${} more robust; require it for every interpolation that uses '...' or "..."
This commit is contained in:
parent
4ecc5001b9
commit
f1549b3ee7
4 changed files with 11 additions and 4 deletions
|
@ -190,7 +190,7 @@ fn (mut context Context) kill_pgroup() {
|
|||
}
|
||||
|
||||
fn (mut context Context) compilation_runner_loop() {
|
||||
cmd := '"$context.vexe" ${context.opts.join(' ')}'
|
||||
cmd := '"${context.vexe}" ${context.opts.join(' ')}'
|
||||
_ := <-context.rerun_channel
|
||||
for {
|
||||
context.elog('>> loop: v_cycles: $context.v_cycles')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue