diff options
| author | hensldm <hensley.derek58@gmail.com> | 2022-07-30 20:27:04 -0700 |
|---|---|---|
| committer | hensldm <hensley.derek58@gmail.com> | 2022-07-30 20:27:04 -0700 |
| commit | e58017c99d8cdc68a89402b30e0d6af29b5331bc (patch) | |
| tree | 2c7d0165be493ef4801fccff4ff53b02a14662a0 | |
| parent | cc67d1dd6a62e192d0fbbf3f75f671072b5e3691 (diff) | |
Fix?
| -rw-r--r-- | Jenkinsfile | 6 |
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' + } } } |
