Merge pull request #4506 from Homebrew/revert-4470-chmods-for-exec-scripts

Revert "Explicitly chmod exec script files"
This commit is contained in:
ilovezfs 2018-07-18 11:02:55 +01:00 committed by GitHub
commit eb5175857c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -328,12 +328,10 @@ class Pathname
mkpath
targets.each do |target|
target = Pathname.new(target) # allow pathnames or strings
script = join(target.basename)
script.write <<~SH
join(target.basename).write <<~SH
#!/bin/bash
exec "#{target}" "$@"
SH
script.chmod 0555
end
end
@ -346,7 +344,6 @@ class Pathname
#!/bin/bash
#{env_export}exec "#{target}" "$@"
SH
chmod 0555
end
# Writes a wrapper env script and moves all files to the dst
@ -370,7 +367,6 @@ class Pathname
#!/bin/bash
#{java_home}exec java #{java_opts} -jar #{target_jar} "$@"
SH
chmod 0555
end
def install_metafiles(from = Pathname.pwd)