Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
Fix bindir and executables
Browse files Browse the repository at this point in the history
  • Loading branch information
gin0606 committed Jul 4, 2016
1 parent 0fe5c0e commit c1d2298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tukune.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Gem::Specification.new do |spec|
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'octokit'
Expand Down

0 comments on commit c1d2298

Please sign in to comment.