fix sintax

This commit is contained in:
Roberto Cirillo 2022-04-22 17:00:32 +02:00
parent d66f8c0ecf
commit 56c64cc83f
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -30,11 +30,11 @@ pipeline {
stage('initialize environment') {
steps {
sh '''
date=`date`
// if [ ! -e $DEPLOY_FILE] then
touch $DEPLOY_FILE
// fi
'''
date=`date`
if [ ! -e $DEPLOY_FILE] then
touch $DEPLOY_FILE
fi
'''
}
}
stage('Deploy from system') {