Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Sep 18, 2024
1 parent ff1faf9 commit 5639c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/deployment-cli-tools/ch_cli_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def to_python_module(name):
@cache
def guess_build_dependencies_from_dockerfile(filename):
dependencies = []
if not "Dockerfile" in filename:
if "Dockerfile" not in str(filename):
filename = join(filename, "Dockerfile")
if not os.path.exists(filename):
return dependencies
Expand Down

0 comments on commit 5639c06

Please sign in to comment.