aboutsummaryrefslogtreecommitdiffstats
path: root/init-repository
diff options
context:
space:
mode:
Diffstat (limited to 'init-repository')
-rwxr-xr-xinit-repository14
1 files changed, 7 insertions, 7 deletions
diff --git a/init-repository b/init-repository
index 7a97c199..570e124f 100755
--- a/init-repository
+++ b/init-repository
@@ -144,7 +144,7 @@ Options:
For example:
- --mirror user\@machine:/foo/bar/
+ --mirror user\@machine:/foo/bar/qt/
...will use the following as a mirror for qtbase:
@@ -167,13 +167,13 @@ my $script_path = abs_path($0);
$script_path =~ s,[/\\][^/\\]+$,,;
my $GERRIT_SSH_BASE
- = 'ssh://@USER@codereview.qt-project.org@PORT@/';
+ = 'ssh://@USER@codereview.qt-project.org@PORT@/qt/';
my $BER_MIRROR_URL_BASE
- = 'git://hegel/';
+ = 'git://hegel/qt/';
my $OSLO_MIRROR_URL_BASE
- = 'git://qilin/';
+ = 'git://qilin/qt/';
sub new
{
@@ -638,12 +638,12 @@ sub run
chomp(my $url = `git config remote.origin.url`);
die("Have no origin remote.\n") if (!$url);
$url =~ s,\.git$,,;
- $url =~ s,qt/qt5$,,;
+ $url =~ s/qt5$//;
$self->{'base-url'} = $url;
- $self->git_clone_all_submodules('qt/qt5', $self->{branch}, @{$self->{'module-subset'}});
+ $self->git_clone_all_submodules('qt5', $self->{branch}, @{$self->{'module-subset'}});
- $self->git_add_remotes('qt/qt5');
+ $self->git_add_remotes('qt5');
$self->git_install_hooks;