Skip to content

Commit

Permalink
Merge branch 'master' of github.com:contribsys/faktory
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Oct 15, 2018
2 parents 81154e9 + 419d298 commit cfffd81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/notes.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'erb'
require 'shellwords'

# GitHub release notes auto-generator
# Use like `ruby notes.rb 0.9.0`
Expand All @@ -11,7 +12,7 @@
Dir["packaging/output/systemd/*"].each do |fullname|
name = File.basename(fullname)

output = `shasum -p -a 256 #{fullname}`
output = `shasum -p -a 256 #{Shellwords.escape(fullname)}`
if $?.exitstatus != 0
raise output
end
Expand Down

0 comments on commit cfffd81

Please sign in to comment.