Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/service/impl/build_javascript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ "$4" -eq "2" ]; then
fi

if [ ! -d $modulesPath ]; then
mkdir $modulesPath
mkdir -p $modulesPath
fi

cp -f $projectPath/package.json $modulesPath
Expand Down
2 changes: 1 addition & 1 deletion src/common/service/impl/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ip=$4
port=$5
topath=$6
expect -c "
spawn rsync -raqpPL --delete $h5zip $userid@$ip:$topath
spawn rsync -raqpPL -e "ssh -p $port" --delete $h5zip $userid@$ip:$topath
expect {
\"*assword\" {set timeout 300;send \"$pw\r\";}
\"yes/no\" {send \"yes\r\"; exp_continue;}
Expand Down