You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/01/07 05:24:10 UTC

[dolphinscheduler] branch dev updated: [deploy] Make install.sh as executable script (#7862)

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

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 62cac2d  [deploy] Make install.sh as executable script (#7862)
62cac2d is described below

commit 62cac2d5290ee654ae7ed1b42594586409959da7
Author: Jiajie Zhong <zh...@hotmail.com>
AuthorDate: Fri Jan 7 13:24:00 2022 +0800

    [deploy] Make install.sh as executable script (#7862)
    
    * [deploy] Make install.sh as executable script
    * Change file and dir mode in dist
    
    fix: #7860
---
 dolphinscheduler-dist/src/main/assembly/dolphinscheduler-bin.xml | 2 ++
 script/install.sh                                                | 0
 2 files changed, 2 insertions(+)

diff --git a/dolphinscheduler-dist/src/main/assembly/dolphinscheduler-bin.xml b/dolphinscheduler-dist/src/main/assembly/dolphinscheduler-bin.xml
index 85f5a62..661dbdb 100644
--- a/dolphinscheduler-dist/src/main/assembly/dolphinscheduler-bin.xml
+++ b/dolphinscheduler-dist/src/main/assembly/dolphinscheduler-bin.xml
@@ -73,6 +73,8 @@
         <fileSet>
             <directory>${basedir}/../script</directory>
             <outputDirectory>bin</outputDirectory>
+            <fileMode>0755</fileMode>
+            <directoryMode>0755</directoryMode>
         </fileSet>
 
         <fileSet>
diff --git a/script/install.sh b/script/install.sh
old mode 100644
new mode 100755