initialize backup file

This commit is contained in:
Roberto Cirillo 2022-04-28 15:10:58 +02:00
parent f5b55a9c40
commit c6bbc0e18c
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

@ -51,8 +51,9 @@ pipeline {
stage('initialize environment') { stage('initialize environment') {
steps { steps {
sh ''' sh '''
date=`date` date=`date`;
touch $DEPLOY_FILE touch $DEPLOY_FILE;
touch $BACKUP_FILE;
''' '''
} }
} }