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

android: provide more predictable logging, add comptime termux support (#14984)

This commit is contained in:
Larpon
2022-07-07 17:28:29 +02:00
committed by GitHub
parent 71a85249ea
commit 9f3b6e3e3a
9 changed files with 49 additions and 44 deletions

View File

@ -355,9 +355,6 @@ pub fn user_os() string {
$if vinix {
return 'vinix'
}
if getenv('TERMUX_VERSION') != '' {
return 'termux'
}
return 'unknown'
}