Merge pull request #5024 from blattms/not-warn-loadStep-OutputDir

Do not warn about OutputDir when combined with LoadStep.
This commit is contained in:
Bård Skaflestad
2023-11-24 19:03:52 +01:00
committed by GitHub

View File

@@ -76,6 +76,7 @@ void checkSerializedCmdLine(const std::string& current,
{
return line.compare(0, 11, "EclDeckFile") != 0 &&
line.compare(0, 8, "LoadStep") != 0 &&
line.compare(0, 9, "OutputDir") != 0 &&
line.compare(0, 8, "SaveFile") != 0 &&
line.compare(0, 8, "SaveStep") != 0;
});