diff --git a/metplus/wrappers/command_builder.py b/metplus/wrappers/command_builder.py index 13ee4b5a38..6d018b7916 100755 --- a/metplus/wrappers/command_builder.py +++ b/metplus/wrappers/command_builder.py @@ -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)