Skip to content

Commit

Permalink
Move bin/jekyll to exe/jekyll to prevent collision with binstubs
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Jun 15, 2016
1 parent ddf8335 commit 5e343f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/vendor
Gemfile.lock
_site/
bin/
bbin/
coverage
gh-pages/
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions jekyll.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/jekyll/jekyll'

all_files = `git ls-files -z`.split("\x0")
s.files = all_files.grep(%r{^(bin|lib)/|^.rubocop.yml$})
s.executables = all_files.grep(%r{^bin/}) { |f| File.basename(f) }
s.files = all_files.grep(%r{^(exe|lib)/|^.rubocop.yml$})
s.executables = all_files.grep(%r{^exe/}) { |f| File.basename(f) }
s.bindir = "exe"
s.require_paths = ['lib']

s.rdoc_options = ['--charset=UTF-8']
Expand Down

0 comments on commit 5e343f6

Please sign in to comment.