From ff7f68eb640b78ef833bc9619410cc693ba29871 Mon Sep 17 00:00:00 2001 From: Ufnow Date: Tue, 21 Apr 2020 19:27:13 +0200 Subject: [PATCH] fix --- Jenkinsfile | 6 +++--- countLines.sh => script.sh | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename countLines.sh => script.sh (100%) diff --git a/Jenkinsfile b/Jenkinsfile index 3b145fc..3c35d99 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,10 +18,10 @@ pipeline { } } } - stage('Count lines'){ + stage('Count lines'){ steps { - sh('chmod +x ./countLines.sh') - sh('./countLines.sh') + sh('chmod +x ./script.sh') + sh('./script.sh') } } } diff --git a/countLines.sh b/script.sh similarity index 100% rename from countLines.sh rename to script.sh