mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix -o x.c
regression introduced in ff62b27
This commit is contained in:
parent
ff62b27ef0
commit
24f5d0afc4
@ -484,6 +484,11 @@ fn (mut v Builder) cc() {
|
||||
ends_with_js := v.pref.out_name.ends_with('.js')
|
||||
if ends_with_c || ends_with_js {
|
||||
v.pref.skip_running = true
|
||||
msg_mv := 'os.mv_by_cp $v.out_name_c => $v.pref.out_name'
|
||||
util.timing_start(msg_mv)
|
||||
// v.out_name_c may be on a different partition than v.out_name
|
||||
os.mv_by_cp(v.out_name_c, v.pref.out_name) or { panic(err) }
|
||||
util.timing_measure(msg_mv)
|
||||
return
|
||||
}
|
||||
// Cross compiling for Windows
|
||||
|
Loading…
Reference in New Issue
Block a user