Skip to content

Commit 29784d1

Browse files
committed
Fix grpc-compiler build.
1 parent 46ce409 commit 29784d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ println "*** Please refer to https://github.com/grpc/grpc-java/blob/master/COMPI
170170

171171
task buildArtifacts(type: Copy) {
172172
dependsOn 'java_pluginExecutable'
173-
from("$buildDir/binaries") {
173+
from("$buildDir/exe") {
174174
if (osdetector.os != 'windows') {
175175
rename 'protoc-gen-grpc-java', '$0.exe'
176176
}
@@ -181,7 +181,7 @@ task buildArtifacts(type: Copy) {
181181
archivesBaseName = "$protocPluginBaseName"
182182

183183
artifacts {
184-
archives("$artifactStagingPath/java_pluginExecutable/${protocPluginBaseName}.exe" as File) {
184+
archives("$artifactStagingPath/java_plugin/${protocPluginBaseName}.exe" as File) {
185185
classifier osdetector.os + "-" + arch
186186
type "exe"
187187
extension "exe"

0 commit comments

Comments
 (0)