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

tools: include vls.log in the .gitignore files for new V projects (#12522)

This commit is contained in:
Subhomoy Haldar
2021-11-19 22:53:35 +05:30
committed by GitHub
parent b576181a66
commit 2794aa623a
3 changed files with 5 additions and 0 deletions

View File

@ -74,6 +74,7 @@ fn gen_gitignore(name string) string {
'*.so',
'*.dylib',
'*.dll',
'vls.log',
'',
].join('\n')
}

View File

@ -34,6 +34,7 @@ fn init_and_check() ? {
'*.so',
'*.dylib',
'*.dll',
'vls.log',
'',
].join('\n')
}