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

cmd: rename test-vet to test-cleancode

This commit is contained in:
Delyan Angelov
2020-11-15 16:24:25 +02:00
parent 9cf5a31faf
commit 4559b4138f
3 changed files with 8 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ const (
fn main() {
args := os.args
args_string := args[1..].join(' ')
pass_args := args_string.all_before('test-vet')
pass_args := args_string.all_before('test-cleancode')
v_test_vetting(pass_args)
}