[Build] Fix a bunch of buildscript compilation warnings

#KTI-1221 Fixed
This commit is contained in:
Alexander.Likhachev
2023-05-17 15:57:56 +02:00
committed by Space Team
parent 46e83ef7da
commit a93c49baf1
17 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ val currentOsType = run {
val osArch = when (providers.systemProperty("sun.arch.data.model").get()) {
"32" -> OsArch.X86_32
"64" -> when (providers.systemProperty("os.arch").get().toLowerCase()) {
"64" -> when (providers.systemProperty("os.arch").get().lowercase()) {
"aarch64" -> OsArch.ARM64
else -> OsArch.X86_64
}