Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-08-31 11:57:49 +0300
committerAchilleas Pipinellis <axilleas@axilleas.me>2017-08-31 11:57:49 +0300
commit66c1ead6a0caf90506ea23c71f7821f22d436cd4 (patch)
tree409114d7122f8d8dc53f3a9f09acd560cd81e700 /Rakefile
parentbfdb1d5d4ad9efe0b734ec2ce1e52d11d6969c1e (diff)
Set up a dummy Git username/email so that clone doesn't fail
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index e40454b7..119a24ca 100644
--- a/Rakefile
+++ b/Rakefile
@@ -46,6 +46,11 @@ task :pull_repos do
end
end
+ puts "\n=> Setting up dummy user/email in Git"
+
+ `git config --global user.name "John Doe"`
+ `git config --global user.email johndoe@example.com`
+
products.each do |product|
temp_dir = File.join(product['dirs']['temp_dir'])