Skip to content

Commit

Permalink
revert usign glob for dll patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed May 28, 2022
1 parent c9bf109 commit fca16e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/managers/dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def __step_copy_dll(self, config: dict, step: dict):

try:
if "*" in step.get('file_name'):
files = os.listdir(os.path.join(path, step.get("file_name")))
files = glob(f"{path}/{step.get('file_name')}")
for fg in files:
_name = fg
_path = os.path.join(path, step.get("file_name"), _name)
Expand Down

0 comments on commit fca16e9

Please sign in to comment.