We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03c7157 commit 8ae7a10Copy full SHA for 8ae7a10
contrib/hooks/post-receive/lib/git_hosting_custom_hook.rb
@@ -52,7 +52,7 @@ def get_executables(directory)
52
executables = []
53
if File.directory? directory
54
Dir.foreach directory do |item|
55
- next if ['.', '..'].include? item
+ next if ['.', '..', '__pycache__'].include? item
56
57
# Use full relative path
58
path = "#{directory}/#{item}"
0 commit comments