tools: include `vls.log` in the .gitignore files for new V projects (#12522)
parent
b576181a66
commit
2794aa623a
|
@ -102,3 +102,6 @@ flake.nix
|
||||||
.envrc
|
.envrc
|
||||||
|
|
||||||
thirdparty/stdatomic/nix/cpp/*.h
|
thirdparty/stdatomic/nix/cpp/*.h
|
||||||
|
|
||||||
|
# ignore VLS log
|
||||||
|
vls.log
|
||||||
|
|
|
@ -74,6 +74,7 @@ fn gen_gitignore(name string) string {
|
||||||
'*.so',
|
'*.so',
|
||||||
'*.dylib',
|
'*.dylib',
|
||||||
'*.dll',
|
'*.dll',
|
||||||
|
'vls.log',
|
||||||
'',
|
'',
|
||||||
].join('\n')
|
].join('\n')
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,7 @@ fn init_and_check() ? {
|
||||||
'*.so',
|
'*.so',
|
||||||
'*.dylib',
|
'*.dylib',
|
||||||
'*.dll',
|
'*.dll',
|
||||||
|
'vls.log',
|
||||||
'',
|
'',
|
||||||
].join('\n')
|
].join('\n')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue