Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion rex/utilities/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import datetime
import logging
import inspect
import glob
import json
import yaml
import os
Expand Down Expand Up @@ -333,7 +334,7 @@ def check_res_file(res_file):
elif res_file.startswith('s3://'):
bad = False

elif '*' in res_file and not res_file.startswith('/nrel/'):
elif len(glob.glob(res_file)) > 0 and not res_file.startswith('/nrel/'):
bad = False
multi_h5_res = True

Expand Down
Loading