diff --git a/Jenkinsfile b/Jenkinsfile index 488b7ee1..616f4132 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('Stop') { steps { - sh './var/lib/jenkins/workspace/stop.sh' + sh 'sh /var/lib/jenkins/workspace/stop.sh' } } stage('Build') { @@ -13,7 +13,7 @@ pipeline { } stage('Start'){ steps { - sh './var/lib/jenkins/workspace/start.sh' + sh 'sh /var/lib/jenkins/workspace/start.sh' } } // stage('Deploy') {