Skip to content

Commit 79acc1f

Browse files
committed
Fix gRPC Maven Central URL template separator
Maven Central uses hyphens for all separators in gRPC binaries: - Wrong: protoc-gen-grpc-java-1.68.1-linux_x86_64.exe - Correct: protoc-gen-grpc-java-1.68.1-linux-x86_64.exe This fixes GitLab CI failures on Linux x86_64
1 parent fe6cbf2 commit 79acc1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/leiningen/protodeps.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ and include this full error message to add support for your platform."
251251
(def new-protoc-release-tpl "https://github.com/protocolbuffers/protobuf/releases/download/v${:minor}.${:patch}/protoc-${:minor}.${:patch}-${:os-name}-${:os-arch}.zip")
252252

253253

254-
(def grpc-release-tpl "https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/${:version}/protoc-gen-grpc-java-${:version}-${:os-name}_${:os-arch}.exe")
254+
(def grpc-release-tpl "https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/${:version}/protoc-gen-grpc-java-${:version}-${:os-name}-${:os-arch}.exe")
255255

256256

257257
(defn- protoc-release-template [{:keys [protoc-zip-url-template]}

0 commit comments

Comments
 (0)