This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new bc38c6268b [#7054] fix(build): Fail to build Iceberg REST catalog
Docker image (#7058)
bc38c6268b is described below
commit bc38c6268b43502b6fcfd7dbc75fdf85188ace6c
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Apr 24 10:59:10 2025 +0800
[#7054] fix(build): Fail to build Iceberg REST catalog Docker image (#7058)
### What changes were proposed in this pull request?
Fail to build Iceberg REST catalog Docker image
### Why the changes are needed?
Fix: #7054
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
build Iceberg REST server image successfully
Co-authored-by: FANNG <[email protected]>
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 5798375884..c06059c839 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -668,7 +668,7 @@ tasks {
into("${rootProject.name}-iceberg-rest-server/conf")
}
from(projectDir.dir("bin")) {
- include("common.sh", "${rootProject.name}-iceberg-rest-server.sh")
+ include("common.sh.template",
"${rootProject.name}-iceberg-rest-server.sh.template")
into("${rootProject.name}-iceberg-rest-server/bin")
}
into(outputDir)