AtlasGeoModel: Tolerate potential races.
If multiple jobs are running, there may be a race between
if not os.path.exists("Geometry"):
and
os.mkdir("Geometry")
Ignore errors from the mkdir if the file already exists.
If multiple jobs are running, there may be a race between
if not os.path.exists("Geometry"):
and
os.mkdir("Geometry")
Ignore errors from the mkdir if the file already exists.