Skip to content
Snippets Groups Projects
Commit b5b989d5 authored by david_williams's avatar david_williams
Browse files

improve promote script to use rsync instead of cp

parent 3ab4b379
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ then
do
rsync -${rsyncArgs} ${FROMDIR} ${TODIR}
exitCode=$?
if [ ! ( exitCode == 0 ) ]
if [ exitCode != 0 ]
then
nTrys=$(( nTrys + 1 ))
if [ $verboseFlag ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment