summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 4401ca7..7417208 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -70,8 +70,10 @@ pipeline {
// INSTALL PYTHON DEPENDENCIES, currently MM only
stage('Install Python dependencies') {
- dir('mm') {
- sh 'python3 -m pip install -r requirements.txt'
+ steps {
+ dir('mm') {
+ sh 'python3 -m pip install -r requirements.txt'
+ }
}
}