summaryrefslogtreecommitdiffstats
path: root/init-repository.py
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2014-08-01 13:15:51 +0200
committerAndras Becsi <andras.becsi@digia.com>2014-08-01 13:40:54 +0200
commitb9a612e20e371458a284cb3b8c66535b34d997d4 (patch)
treebec3cd0d491e45cef1d4f77aab80c37c019327cc /init-repository.py
parent22b3c48230acca1af5613b19050dd017d8e4b021 (diff)
Update repository path after the move from qt-labs to qt
Change-Id: I2b41179b9353ea4c65281492942d34d761f5de7b Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'init-repository.py')
-rwxr-xr-xinit-repository.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/init-repository.py b/init-repository.py
index 64f792b81..94bfb1af7 100755
--- a/init-repository.py
+++ b/init-repository.py
@@ -60,7 +60,7 @@ def sanityCheckRepo():
print 'you do not need to run the init-repository.py script.'
print ''
print 'If you want to use git for working with qtwebengine,'
- print 'use git to clone: git@gitorious.org:qt-labs/qtwebengine.git'
+ print 'use git to clone: git@gitorious.org:qt/qtwebengine.git'
print ''
sys.exit(0)
@@ -120,7 +120,7 @@ def addGerritRemote():
os.chdir(qtwebengine_root)
remotes = subprocess.check_output(['git', 'remote'])
if not 'gerrit' in remotes:
- subprocess.call(['git', 'remote', 'add', 'gerrit', 'ssh://codereview.qt-project.org:29418/qt-labs/qtwebengine.git'])
+ subprocess.call(['git', 'remote', 'add', 'gerrit', 'ssh://codereview.qt-project.org:29418/qt/qtwebengine.git'])
def installGitHooks():
os.chdir(qtwebengine_root)