File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -186,10 +186,7 @@ def load_params(args):
186
186
mysuite .log .fail ("ERROR: required suite-wide directory not specified\n " + \
187
187
"(sourceTree, amrexDir, sourceDir, testTopDir)" )
188
188
189
- # Make sure the web dir is valid (or use the default is none specified)
190
- if mysuite .webTopDir == "" :
191
- mysuite .webTopDir = "{}/{}-web/" .format (mysuite .testTopDir , mysuite .suiteName )
192
-
189
+ # Make sure the web dir is valid
193
190
if not os .path .isdir (mysuite .webTopDir ):
194
191
try : os .mkdir (mysuite .webTopDir )
195
192
except :
Original file line number Diff line number Diff line change @@ -463,11 +463,6 @@ def init_web_dir(self, dir_name):
463
463
else :
464
464
465
465
self .webTopDir = os .path .normpath (dir_name ) + '/'
466
-
467
- if not os .path .isdir (self .webTopDir ):
468
-
469
- self .log .fail ("ERROR: Unable to initialize web directory to"
470
- + " {} - invalid path." .format (self .webTopDir ))
471
466
472
467
def delete_tempdirs (self ):
473
468
"""
You can’t perform that action at this time.
0 commit comments