Skip to content

Commit

Permalink
Yet another
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Aug 24, 2024
1 parent 4b44133 commit 0600b1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx4g
#RELEASE_SIGNING_ENABLED=false

GROUP=co.touchlab.kmmbridge
VERSION_NAME=1.0.2-SNAPSHOT
VERSION_NAME=1.0.3-SNAPSHOT
VERSION_NAME_3x=0.3.7

POM_URL=https://github.com/touchlab/KMMBridge
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ internal fun procRun(vararg params: String, dir: File?, processLines: (String, I
val processBuilder = ProcessBuilder(*params)
.redirectErrorStream(true)
if (dir != null) {
println("*** Running proc in ${dir.path}")
processBuilder.directory(dir)
}
println("*** Running proc in ${processBuilder.directory().path}")

val process = processBuilder
.start()

Expand Down

0 comments on commit 0600b1d

Please sign in to comment.