Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jiridanek committed Dec 9, 2024
1 parent 3dcfee4 commit 79662a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/cached-builds/gha_pr_changed_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ def should_build_target(changed_files: list[str], target_directories: list[str])
# detect change in any of the files outside
stdout = subprocess.check_output([PROJECT_ROOT / "bin/buildinputs", directory + "/Dockerfile"],
text=True, cwd=PROJECT_ROOT)
logging.debug(f"{stdout=}")
logging.debug(f"{directory=} {stdout=}")
if stdout == "\n":
# no dependencies
continue
dependencies: list[str] = json.loads(stdout)
for dependency in dependencies:
for changed_file in changed_files:
Expand Down

0 comments on commit 79662a3

Please sign in to comment.