Skip to content
Snippets Groups Projects
Commit 21f90484 authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

fix RSYNC_RSH var for deployment script

Change-Id: I2c02c37726fa2e2c6f404e681cce8bd35207e58e
parent 1acbde60
Branches
Tags
No related merge requests found
...@@ -173,7 +173,7 @@ EOF ...@@ -173,7 +173,7 @@ EOF
function deploy() function deploy()
{ {
if [ -f ${SSH_IDENTIY_FILE} ]; if [ -f "${SSH_IDENTIY_FILE}" ];
then then
RSYNC_RSH="ssh -i ${SSH_IDENTIY_FILE}" RSYNC_RSH="ssh -i ${SSH_IDENTIY_FILE}"
fi fi
...@@ -182,6 +182,7 @@ function deploy() ...@@ -182,6 +182,7 @@ function deploy()
echo "##########################" echo "##########################"
echo "## deploying repository ##" echo "## deploying repository ##"
echo "##########################" echo "##########################"
echo "Using RSYNC_RSH='${RSYNC_RSH}'"
rsync --archive --recursive --verbose --delete ${DISTRIBUTION_REPOSITOIRY_FOLDER} ${REMOTE_REPOSITORY_LOCATION} rsync --archive --recursive --verbose --delete ${DISTRIBUTION_REPOSITOIRY_FOLDER} ${REMOTE_REPOSITORY_LOCATION}
# deploy the manual download files # deploy the manual download files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment