Skip to content

Commit

Permalink
Merge branch 'develop' into feature_2421_v6.0.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Nov 14, 2023
2 parents 4ee3189 + cd6a11d commit 7a5ef5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metplus/wrappers/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def _get_closest_files(self, data_dir, template, valid_time,
"%Y%m%d%H%M%S").strftime("%s"))

# step through all files under input directory in sorted order
for dirpath, _, all_files in os.walk(data_dir):
for dirpath, _, all_files in os.walk(data_dir, followlinks=True):
for filename in sorted(all_files):
fullpath = os.path.join(dirpath, filename)

Expand Down

0 comments on commit 7a5ef5a

Please sign in to comment.