1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix regression of 'v build module file.v'

This commit is contained in:
Delyan Angelov 2019-12-16 17:54:10 +02:00 committed by Alexander Medvednikov
parent 9dd86a2de6
commit 8271d239b2

2
v.v
View File

@ -77,7 +77,7 @@ fn main() {
fn v_command(command string, args []string) { fn v_command(command string, args []string) {
match command { match command {
'', '.', 'run' { '', '.', 'run', 'build' { // handled later in vlib/compiler/main.v
return return
} }
'version' { 'version' {