mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
compiler: remove unneeded blank ident assignment (#2634)
This commit is contained in:
parent
e3d8ab5849
commit
a6a233df6b
@ -174,8 +174,8 @@ fn (v mut V) cc() {
|
||||
println('$path not found... building module $imp')
|
||||
if path.ends_with('vlib/ui.o') {
|
||||
println('copying ui...')
|
||||
_ = os.cp('$vdir/thirdparty/ui/ui.o', path) or { panic('error copying ui files') }
|
||||
_ = os.cp('$vdir/thirdparty/ui/ui.vh', v_modules_path +
|
||||
os.cp('$vdir/thirdparty/ui/ui.o', path) or { panic('error copying ui files') }
|
||||
os.cp('$vdir/thirdparty/ui/ui.vh', v_modules_path +
|
||||
'/vlib/ui.vh') or { panic('error copying ui files') }
|
||||
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user