This is an automated email from the ASF dual-hosted git repository. vaughn pushed a commit to branch zy_dev in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit b6bdd7bc9d27d201b618c100d46dd5a276798e0e Author: vaughn <[email protected]> AuthorDate: Wed Jan 4 10:16:36 2023 +0800 fix: script no permission --- 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>
