Use all uppercase in filenames

ERT already does the conversion for *some* of the files; we might as
well convert all the names so that there is no confusion.
This commit is contained in:
Roland Kaufmann
2013-11-21 12:29:20 +01:00
parent d83d7d829c
commit c3bcd6c83c

View File

@@ -919,6 +919,10 @@ EclipseWriter::EclipseWriter (
baseName_ = path (deck.filename ()).string ();
}
// make uppercase of everything (or otherwise we'll get uppercase
// of some of the files (.SMSPEC, .UNSMRY) and not others
baseName_ = boost::to_upper_copy (baseName_);
// store in current directory if not explicitly set
if (params.has ("output_dir")) {
outputDir_ = params.get <std::string> ("output_dir");