Skip to content

Commit

Permalink
Merge pull request #182 from Ana06/fix-executable
Browse files Browse the repository at this point in the history
Fix Trollolo executable
  • Loading branch information
Ana06 authored Mar 1, 2018
2 parents d928c94 + c9bc5d9 commit d9a6f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trollolo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.add_dependency 'ruby-trello', '~> 2.0'

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ %r{/^bin\/(.*)/} ? Regexp.last_match(1) : nil}.compact
s.executables = `git ls-files`.split("\n").map{|f| f =~ %r{^bin/(.*)} ? Regexp.last_match(1) : nil}.compact
s.require_path = 'lib'

s.files += Dir['man/*.?'] # UNIX man pages
Expand Down

0 comments on commit d9a6f3f

Please sign in to comment.