From dcef42311d0cbb2b3cce5dcd32f6ac6118fea771 Mon Sep 17 00:00:00 2001 From: Alexandr Mansurov Date: Sat, 9 Oct 2021 01:11:52 +0200 Subject: [PATCH] Fix typo in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 243cb65..2840727 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -64,7 +64,7 @@ pipeline { source /opt/conda/etc/profile.d/conda.sh conda activate "${WORKSPACE}@tmp/${BUILD_NUMBER}" pip install prospector[with_everything] - cd src; prospector -0 -o pylint:prospector.txt + cd src; prospector -0 -o pylint:prospector.txt; cd ..; mv src/prospector.txt . conda deactivate ''' def scannerHome = tool name: 'SonarQubeScanner', type: 'hudson.plugins.sonar.SonarRunnerInstallation';