You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by jo...@apache.org on 2019/12/20 08:30:11 UTC

[incubator-dolphinscheduler] branch dev updated: scp ui folder to install path (#1530)

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 0d00463  scp ui folder to install path (#1530)
0d00463 is described below

commit 0d00463faeb0d8c29acc8a6742c186a96626e9df
Author: lgcareer <18...@163.com>
AuthorDate: Fri Dec 20 16:30:04 2019 +0800

    scp ui folder to install path (#1530)
---
 script/scp-hosts.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/script/scp-hosts.sh b/script/scp-hosts.sh
index fade02c..d6d8674 100644
--- a/script/scp-hosts.sh
+++ b/script/scp-hosts.sh
@@ -29,11 +29,12 @@ do
       ssh -p $sshPort $host "sudo mkdir -p $installPath; sudo chown -R $deployUser:$deployUser $installPath"
     fi
 
-	ssh -p $sshPort $host  "cd $installPath/; rm -rf bin/ conf/ lib/ script/ sql/"
+	ssh -p $sshPort $host  "cd $installPath/; rm -rf bin/ conf/ lib/ script/ sql/ ui/"
 	scp -P $sshPort -r $workDir/../bin  $host:$installPath
 	scp -P $sshPort -r $workDir/../conf  $host:$installPath
 	scp -P $sshPort -r $workDir/../lib   $host:$installPath
 	scp -P $sshPort -r $workDir/../script  $host:$installPath
 	scp -P $sshPort -r $workDir/../sql  $host:$installPath
+	scp -P $sshPort -r $workDir/../ui  $host:$installPath
 	scp -P $sshPort  $workDir/../install.sh  $host:$installPath
 done