This is an automated email from the ASF dual-hosted git repository.

heejong pushed a commit to branch BEAM-14369
in repository https://gitbox.apache.org/repos/asf/beam.git

commit fd387777fce2e849b9333794ae044f537d45d102
Author: Heejong Lee <[email protected]>
AuthorDate: Tue Apr 26 15:43:15 2022 -0700

    [BEAM-14369] Fix "target/options: no such file or directory" error while 
building Java container
---
 sdks/java/container/common.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/java/container/common.gradle 
b/sdks/java/container/common.gradle
index e58f19e99f4..72c643a0445 100644
--- a/sdks/java/container/common.gradle
+++ b/sdks/java/container/common.gradle
@@ -83,7 +83,7 @@ task copyJdkOptions(type: Copy) {
 
 task skipPullLicenses(type: Exec) {
     executable "sh"
-    args "-c", "mkdir -p build/target/go-licenses 
build/target/third_party_licenses && touch 
build/target/third_party_licenses/skip"
+    args "-c", "mkdir -p build/target/go-licenses build/target/options 
build/target/third_party_licenses && touch 
build/target/third_party_licenses/skip"
 }
 
 docker {
@@ -115,4 +115,4 @@ if 
(project.rootProject.hasProperty(["docker-pull-licenses"]) ||
 dockerPrepare.dependsOn copySdkHarnessLauncher
 dockerPrepare.dependsOn copyDockerfileDependencies
 dockerPrepare.dependsOn ":sdks:java:container:downloadCloudProfilerAgent"
-dockerPrepare.dependsOn copyJdkOptions
\ No newline at end of file
+dockerPrepare.dependsOn copyJdkOptions

Reply via email to