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

v: support better separation of general Android vs Termux specific code (part 2)

This commit is contained in:
Delyan Angelov 2022-07-01 13:16:21 +03:00
parent 30401e003f
commit b6b611aa82
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
3 changed files with 3 additions and 3 deletions

View File

@ -343,9 +343,9 @@ pub fn user_os() string {
$if android { $if android {
return 'android' return 'android'
} }
// $if termux { $if termux {
// return 'termux' return 'termux'
// } }
$if solaris { $if solaris {
return 'solaris' return 'solaris'
} }