Add quotes to jenkinsfile

This commit is contained in:
Mario Hüttel 2021-10-10 22:58:26 +02:00
parent e595e398d4
commit ed936cf9f9

4
Jenkinsfile vendored
View File

@ -5,8 +5,8 @@ pipeline {
stage('Configure') { stage('Configure') {
steps { steps {
echo 'Configuring Cmake...' echo 'Configuring Cmake...'
mdkir build mdkir "build"
cd build cd "build"
cmake "../stm-firmware" cmake "../stm-firmware"
} }
} }