make-snapshot: Regexp#match raises on nil now
This commit is contained in:
parent
501b517dfb
commit
ed3333f873
@ -605,7 +605,7 @@ class VCS
|
||||
end
|
||||
rev unless rev.empty?
|
||||
end
|
||||
unless /./.match(from) or /./.match(from = branch_beginning(url))
|
||||
unless (from && /./.match(from)) or ((from = branch_beginning(url)) && /./.match(from))
|
||||
warn "no starting commit found", uplevel: 1
|
||||
from = nil
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user