mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
fix regression of 'v build module file.v'
This commit is contained in:
parent
9dd86a2de6
commit
8271d239b2
1 changed files with 1 additions and 1 deletions
2
v.v
2
v.v
|
@ -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' {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue