Skip to content

Commit

Permalink
Changed job filter so that it only targets darwin/future
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWilkie committed Oct 12, 2023
2 parents 7b8c9ab + e14549a commit 7475f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/_filter_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main(argv: List[str]) -> None:
if file_extension.startswith("."):
file_extension = file_extension[1:]

files_out = [file for file in files_in if file.endswith(f".{file_extension}")]
files_out = [file for file in files_in if file.endswith(f".{file_extension}") if "darwin/future" in file]

print(" ".join(files_out))

Expand Down

0 comments on commit 7475f08

Please sign in to comment.