1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add debug print

matser branch not found on some CIs
https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian9/ruby-master/log/20190824T063005Z.fail.html.gz
```
fatal: Remote branch master not found in upstream origin
```
This commit is contained in:
Kazuhiro NISHIYAMA 2019-08-24 16:22:37 +09:00
parent fe83ed47e7
commit 97ad7862d5
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

View file

@ -540,6 +540,7 @@ class VCS
end
def export(revision, url, dir, keep_temp = false)
puts "branches:"; system(COMMAND, "branch", "-a") # for debug
ret = system(COMMAND, "clone", "-s", (@srcdir || '.').to_s, "-b", url, dir)
ret
end