Skip to content

Commit

Permalink
Merge pull request #19 from jzuhone/case_insensitive
Browse files Browse the repository at this point in the history
Run on filesystems which are not case-sensitive
  • Loading branch information
jzuhone authored Apr 23, 2021
2 parents 9c321b6 + c91e493 commit d8a197d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backstop_history/BackstopHistory.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def get_bs_cmds(self, oflsdir):
in ofls directory that represents the built load.
- list of dictionary items
"""
backstop_file_path = globfile(os.path.join(oflsdir, 'CR*.backstop'))
backstop_file_path = globfile(os.path.join(oflsdir, 'CR[0-9]*.backstop'))

self.logger.info("GET_BS_CMDS - Using backstop file %s" % backstop_file_path)

Expand Down

0 comments on commit d8a197d

Please sign in to comment.