Delete deployment directory if it exists

This commit is contained in:
William Brawner 2018-09-02 21:04:35 -05:00
parent 6decda838b
commit 921bdd3f46

1
Jenkinsfile vendored
View file

@ -29,6 +29,7 @@ pipeline {
steps {
sshPut remote: remote, from: 'archive.zip', into: '.'
sshCommand remote: remote, command: """
if [ test -d /var/www/budget.wbrawner.com/revisions/$GIT_COMMIT ]; then rm -rf /var/www/budget.wbrawner.com/revisions/$GIT_COMMIT; fi && \
mkdir -p /var/www/budget.wbrawner.com/revisions/$GIT_COMMIT && \
unzip -d /var/www/budget.wbrawner.com/revisions/$GIT_COMMIT /root/archive.zip && \
rm /root/archive.zip && \