Skip to content

Commit 01dd5a8

Browse files
committed
fix(proxy): missed enable parameter
1 parent 3f544f2 commit 01dd5a8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Diff for: buildSrc/src/main/kotlin/Versions.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
object Versions {
22
const val clikt = "2.6.0"
33
const val googleOAuth = "1.13.0"
4-
const val googleAppPublisher = "v3-rev20240328-2.0.0"
4+
const val googleAppPublisher = "v3-rev20240418-2.0.0"
55
const val junit = "4.13"
66
}
77

Diff for: github-action/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/vacxe/google-play-cli:0.4.3
1+
FROM ghcr.io/vacxe/google-play-cli:0.4.4
22

33
COPY entrypoint.sh /entrypoint.sh
44
COPY templates /templates

Diff for: src/main/kotlin/com/github/vacxe/googleplaycli/PlayStoreApi.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ class PlayStoreApi(serviceAccountInputStream: InputStream, appName: String) :
3838

3939
System.getenv("PLAYSTORE_PROXY")?.run {
4040
val proxyParameters = split(":")
41-
System.setProperty("proxyHost", proxyParameters[0])
42-
System.setProperty("proxyPort", proxyParameters[1])
41+
val host = proxyParameters[0]
42+
val port = proxyParameters[1]
43+
44+
System.setProperty("proxySet", "true");
45+
System.setProperty("proxyHost", host)
46+
System.setProperty("proxyPort", port)
4347
}
4448

4549
val connectionTimeout = (System.getenv("PLAYSTORE_CONNECTION_TIMEOUT") ?: "PT2M")

Diff for: src/main/kotlin/com/github/vacxe/googleplaycli/PlayStoreCli.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fun main(args: Array<String>) {
8686
addCmd {
8787
object : CliktCommand(name = "version", help = "Library version code") {
8888
override fun run() {
89-
println("0.4.3")
89+
println("0.4.4")
9090
}
9191
}
9292
}

0 commit comments

Comments
 (0)