mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Use GH vendored pygments
This commit is contained in:
9
Rakefile
9
Rakefile
@@ -10,5 +10,12 @@ end
|
|||||||
CLOBBER.include 'lib/linguist/lexers.yml'
|
CLOBBER.include 'lib/linguist/lexers.yml'
|
||||||
|
|
||||||
file 'lib/linguist/lexers.yml' do |f|
|
file 'lib/linguist/lexers.yml' do |f|
|
||||||
sh "./bin/pygments-lexers > #{f.name}"
|
# GitHub vendored pygments path
|
||||||
|
# vendor/python/pygments
|
||||||
|
path = File.expand_path('../../../python/pygments', __FILE__)
|
||||||
|
ENV['PYTHONPATH'] = path if File.directory?(path)
|
||||||
|
|
||||||
|
sh "python ./bin/pygments-lexers > #{f.name}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :lexers => 'lib/linguist/lexers.yml'
|
||||||
|
|||||||
Reference in New Issue
Block a user