File: submodules.rake

package info (click to toggle)
ruby-http-parser.rb 0.6.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 376 kB
  • sloc: java: 431; ansic: 412; ruby: 355; makefile: 20
file content (7 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
desc "Fetch upstream submodules"
task :submodules do
  if Dir['ext/ruby_http_parser/vendor/http-parser/*'].empty?
    sh 'git submodule init'
    sh 'git submodule update'
  end
end