mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-23 23:01:38 +08:00
don't limit adding gerrit remotes to --nokia-developer
this was soooooo outdated! for ... days! :D Change-Id: Ia8cd2b651f672fa65ccbe142699fbeb321413a04 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
fea5e9c67f
commit
b86353b417
@@ -570,7 +570,6 @@ sub git_clone_one_submodule
|
||||
my $mirror_webkit_url = $self->{ 'mirror-webkit-url' };
|
||||
my $mirror_v8_url = $self->{ 'mirror-v8-url' };
|
||||
my $protocol = $self->{ 'protocol' };
|
||||
my $nokia_developer = $self->{ 'nokia-developer' };
|
||||
|
||||
# `--reference FOO' args for the clone, if any.
|
||||
my @reference_args;
|
||||
@@ -622,7 +621,7 @@ sub git_clone_one_submodule
|
||||
$self->exe('git', 'remote', 'add', 'mirror', $mirror);
|
||||
}
|
||||
|
||||
$self->git_add_remotes($submodule) if $nokia_developer;
|
||||
$self->git_add_remotes($submodule);
|
||||
|
||||
if ($self->{'detach-alternates'}) {
|
||||
$self->exe('git', 'repack', '-a');
|
||||
@@ -675,8 +674,6 @@ sub run
|
||||
{
|
||||
my ($self) = @_;
|
||||
|
||||
my $nokia_developer = $self->{ 'nokia-developer' };
|
||||
|
||||
$self->check_if_already_initialized;
|
||||
$self->git_submodule_init;
|
||||
|
||||
@@ -694,7 +691,7 @@ sub run
|
||||
$self->git_clone_all_submodules;
|
||||
}
|
||||
|
||||
$self->git_add_remotes('qt5') if $nokia_developer;
|
||||
$self->git_add_remotes('qt5');
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user