File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
backend/native/src/nativeMain/kotlin
shared/src/nativeMain/kotlin/dev.suresh Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ fun main(args: Array<String>): Unit = runBlocking {
28
28
println (" >>> User: $user , Password: $password " )
29
29
buffer()
30
30
dir()
31
+ // MultiplatformSystem.readEnvironmentVariable()
31
32
}
32
33
33
34
data class ProcessResult (val code : Int , val rawOutput : String? )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ kotlinx-metadata = "0.9.0"
35
35
kotlinx-reflect-lite = " 1.1.0"
36
36
kotlinx-bcv = " 0.15.0-Beta.2"
37
37
kotlin-dokka = " 1.9.20"
38
- kotlin-wrappers = " 1.0.0-pre.752 "
38
+ kotlin-wrappers = " 1.0.0-pre.754 "
39
39
kotlin-redacted = " 1.9.0"
40
40
kotlinx-multik = " 0.2.3"
41
41
kotlinx-dataframe = " 0.13.1"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ actual val platform: Platform = NativePlatform
9
9
object NativePlatform : Platform {
10
10
override val name: String = " Native"
11
11
12
- override fun env (key : String , def : String? ) = getenv(key)?.toKString () ? : def
12
+ override fun env (key : String , def : String? ) = getenv(key)?.toKStringFromUtf8 () ? : def
13
13
14
14
override val osInfo: Map <String , String ?>
15
15
get() =
You can’t perform that action at this time.
0 commit comments