fix cleanup section

This commit is contained in:
Roberto Cirillo 2022-04-28 14:50:42 +02:00
parent f6cd5335ca
commit f5b55a9c40
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -76,12 +76,13 @@ pipeline {
}
sh '''
echo "cleanup $DEPLOY_FILE"
echo "cleanup $DEPLOY_FILE";
if [ -f ${DEPLOY_BACKUP} ]; then
echo "backup found: ${DEPLOY_BACKUP} going to replace it";
rm ${DEPLOY_BACKUP};
mv ${DEPLOY_FILE} ${DEPLOY_BACKUP};
touch ${DEPLOY_FILE};
fi
'''
}
}