Skip to content

Commit

Permalink
chore(dev): remove unneeded copy_excludes (#7406)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Jun 11, 2024
1 parent f2e3505 commit d8ede66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 21 deletions.
8 changes: 1 addition & 7 deletions dev/templates/owlbot.py.twig
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,7 @@ dest = Path().resolve()
# Added so that we can pass copy_excludes in the owlbot_main() call
_tracked_paths.add(src)

php.owlbot_main(
src=src,
dest=dest,
copy_excludes=[
src / "**/[A-Z]*_*.php",
]
)
php.owlbot_main(src=src, dest=dest)

# remove class_alias code
s.replace(
Expand Down
8 changes: 1 addition & 7 deletions dev/tests/fixtures/component/CustomInput/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,7 @@
# Added so that we can pass copy_excludes in the owlbot_main() call
_tracked_paths.add(src)

php.owlbot_main(
src=src,
dest=dest,
copy_excludes=[
src / "**/[A-Z]*_*.php",
]
)
php.owlbot_main(src=src, dest=dest)

# remove class_alias code
s.replace(
Expand Down
8 changes: 1 addition & 7 deletions dev/tests/fixtures/component/SecretManager/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,7 @@
# Added so that we can pass copy_excludes in the owlbot_main() call
_tracked_paths.add(src)

php.owlbot_main(
src=src,
dest=dest,
copy_excludes=[
src / "**/[A-Z]*_*.php",
]
)
php.owlbot_main(src=src, dest=dest)

# remove class_alias code
s.replace(
Expand Down

0 comments on commit d8ede66

Please sign in to comment.