ci: fix v -W build-tools (#23368)

This commit is contained in:
Felipe Pena 2025-01-04 09:48:28 -03:00 committed by GitHub
parent cb490a74f9
commit c421c8cc86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -265,7 +265,6 @@ fn (mut a App) git_info() string {
fn (mut a App) report_tcc_version(tccfolder string) { fn (mut a App) report_tcc_version(tccfolder string) {
cmd := os.join_path(tccfolder, 'tcc.exe') + ' -v' cmd := os.join_path(tccfolder, 'tcc.exe') + ' -v'
x := os.execute(cmd) x := os.execute(cmd)
os_kind := os.user_os()
if x.exit_code == 0 { if x.exit_code == 0 {
a.line('tcc version', '${x.output.trim_space()}') a.line('tcc version', '${x.output.trim_space()}')
} else { } else {