You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by va...@apache.org on 2023/01/04 02:16:59 UTC

[incubator-hugegraph] branch release-1.0.0 updated: fix: script no permission

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

vaughn pushed a commit to branch release-1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git


The following commit(s) were added to refs/heads/release-1.0.0 by this push:
     new 2b2a980f9 fix: script no permission
2b2a980f9 is described below

commit 2b2a980f91881d183665e839cf57284cbb228285
Author: vaughn <va...@apache.org>
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>