Skip to content

Commit

Permalink
killjava.sh Is Executable
Browse files Browse the repository at this point in the history
Previously, changes to the packaging script to ensure that executable
permissions were propagated in all packaging circumstances missed that the
killjava.sh script needed to be executable as well.  This change updates the
packaging script to broaden the collection of files that get executable
permissions during packaging.

[resolves #408]
  • Loading branch information
nebhale committed Mar 22, 2017
1 parent e81b76f commit cdf7459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rakelib/stage_buildpack_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def copy_task(source, target)
file(target => [source, parent]) do |t|
cp t.source, t.name

if t.source.start_with? 'bin'
if t.source.include? 'bin'
chmod 0o755, t.name
else
chmod 0o644, t.name
Expand Down

0 comments on commit cdf7459

Please sign in to comment.