This is an automated email from the ASF dual-hosted git repository.
jermy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
The following commit(s) were added to refs/heads/master by this push:
new 93614cf29 fix: scripts no permission (#2069)
93614cf29 is described below
commit 93614cf29d437aabdd95cc53da4bd049b92355ce
Author: vaughn <[email protected]>
AuthorDate: Wed Jan 4 19:54:06 2023 +0800
fix: scripts no permission (#2069)
---
hugegraph-dist/pom.xml | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/hugegraph-dist/pom.xml b/hugegraph-dist/pom.xml
index ad5d5552d..35988eaff 100644
--- a/hugegraph-dist/pom.xml
+++ b/hugegraph-dist/pom.xml
@@ -179,10 +179,11 @@
</goals>
<configuration>
<target>
- <tar destfile="${final.destfile}"
- basedir="${top.level.dir}"
- includes="${final.name}/**"
- compression="gzip"/>
+ <tar destfile="${final.destfile}"
compression="gzip">
+ <tarfileset dir="${top.level.dir}/"
filemode="755">
+ <include name="${final.name}/**"/>
+ </tarfileset>
+ </tar>
</target>
</configuration>
</execution>