From 8d70f6f0281485b8381a1bcb188a315b9e1ba070 Mon Sep 17 00:00:00 2001 From: s416178 Date: Fri, 3 Apr 2020 11:38:08 +0200 Subject: [PATCH] Fix 3 Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2559568..5e9be22 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,13 +14,13 @@ pipeline { } stage('sh: Shell Script') { steps { - sh('chmod +x ./shell_script.sh') + sh chmod +x ./shell_script.sh sh('./shell_script.sh') } } stage('archiveArtifacts') { steps { - archiveArtifacts './result.log' + archiveArtifacts 'result.log' } } }