mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
CI: fix building v
This commit is contained in:
committed by
Alexander Medvednikov
parent
e2bca190a9
commit
de10a529b0
@@ -22,9 +22,6 @@ struct map {
|
||||
//return false
|
||||
//}
|
||||
|
||||
fn (m mut map) _set(key string, val voidptr) {
|
||||
}
|
||||
|
||||
//fn preorder_keys(node &mapnode, keys mut []string, key_i int) int {
|
||||
//return 0
|
||||
//}
|
||||
@@ -40,7 +37,7 @@ fn (m map) get(key string, out voidptr) bool {
|
||||
pub fn (m mut map) delete(key string) {
|
||||
}
|
||||
|
||||
fn (m map) _exists(key string) bool {
|
||||
fn (m map) exists(key string) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ fn (v mut V) cc() {
|
||||
dir := os.dir(vexe)
|
||||
if !os.file_exists(vjs_path) {
|
||||
println('V.js compiler not found, building...')
|
||||
ret := os.system('$vexe -o $vjs_path -os js $dir/compiler')
|
||||
ret := os.system('$vexe -o $vjs_path -os js $dir/v.v')
|
||||
if ret == 0 {
|
||||
println('Done.')
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user