summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-03-23 13:54:55 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-03-23 14:50:05 +0000
commitee37f809130f6a55aad2e52e8a93a718f20ccc07 (patch)
tree7fd2b40ff90d2b2ddc1d2386416852c003a4fbb4 /bin
parentb4f3a1153790cace83a44bf10c6b394d5d235733 (diff)
qt5_tool: Change super repository URL to code.qt.io.
Change-Id: I14cffe56652ada9d1b0c38a22868ee702a3b9d07 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/qt5_tool8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/qt5_tool b/bin/qt5_tool
index 0091a6c..1088d62 100755
--- a/bin/qt5_tool
+++ b/bin/qt5_tool
@@ -45,7 +45,7 @@ my $optModuleBranchArgument;
my $optGerritModule;
my $optGitHooks;
my $optDesiredBranch;
-my $gitoriousURL = 'git://gitorious.org/qt/qt5.git';
+my $superRepositoryUrl = 'git://code.qt.io/qt/qt5.git';
my $codeReviewHost = 'codereview.qt-project.org';
my $codeReviewPort = 29418;
my $configFile;
@@ -597,8 +597,8 @@ if ( $BOOTSTRAP != 0 ) {
}
my $toolsFolder = 'qtrepotools';
# -- Clone
- my $cloneRc = execute($git, ('clone', $gitoriousURL, $targetFolder));
- die 'clone '. $gitoriousURL . ' failed.' if $cloneRc;
+ my $cloneRc = execute($git, ('clone', $superRepositoryUrl, $targetFolder));
+ die 'clone '. $superRepositoryUrl . ' failed.' if $cloneRc;
chdir($targetFolder) or die ('Failed to chdir to "' . $targetFolder . '":' . $!);
# -- Run init
my $initRc = 0;
@@ -607,7 +607,7 @@ if ( $BOOTSTRAP != 0 ) {
} else {
$initRc = execute('./init-repository', @initOptions);
}
- die 'init '. $gitoriousURL . ' failed.' if $initRc;
+ die 'init '. $superRepositoryUrl . ' failed.' if $initRc;
exit 0;
}