Skip to content

Commit 337a009

Browse files
authored
Fixing another error in Jenkinsfile (#234)
- Missing space before adding `--fmuType` flag.
1 parent ced5ac1 commit 337a009

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.CI/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def runRegressiontest(branch, name, extraFlags, omsHash, dbPrefix, sshConfig, om
701701
"""
702702
FMI_TESTING_FLAG="--fmi=true --fmisimulator=${env.HOME}/saved_omc/OMSimulator/install/bin/OMSimulator --default=ulimitExe=50"
703703
if (name.contains('cvode')) {
704-
FMI_TESTING_FLAG += "--fmuType='cs'"
704+
FMI_TESTING_FLAG += " --fmuType='cs'"
705705
}
706706
}
707707

0 commit comments

Comments
 (0)