Commit 4866ac14 authored by Fabio Pelosin's avatar Fabio Pelosin

[Rakefile] Set git user on Travis

parent 3c57a64a
...@@ -208,6 +208,9 @@ namespace :spec do ...@@ -208,6 +208,9 @@ namespace :spec do
# #
desc "Run all specs and build all examples" desc "Run all specs and build all examples"
task :ci => :unpack_fixture_tarballs do task :ci => :unpack_fixture_tarballs do
sh 'git config --global user.email "cocoapods@example.com"' unless `git config user.email`
sh 'git config --global user.name "CocoaPods"' unless `git config user.name`
title 'Running the specs' title 'Running the specs'
sh "bundle exec bacon #{specs('**')}" sh "bundle exec bacon #{specs('**')}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment