aboutsummaryrefslogtreecommitdiffstats
path: root/init-repository
diff options
context:
space:
mode:
Diffstat (limited to 'init-repository')
-rwxr-xr-xinit-repository11
1 files changed, 1 insertions, 10 deletions
diff --git a/init-repository b/init-repository
index 4eaeb17d..c2b2916d 100755
--- a/init-repository
+++ b/init-repository
@@ -284,16 +284,7 @@ sub check_if_already_initialized
# We consider the repo as `initialized' if submodule.qtbase.url is set
if (qx(git config --get submodule.qtbase.url)) {
- if ($self->{force}) {
- my @configresult = qx(git config -l);
- foreach (@configresult) {
- # Example line: submodule.qtqa.url=git://gitorious.org/qt/qtqa.git
- if (/(submodule\.[^.=]+)\.url=.*/) {
- $self->exe('git', 'config', '--remove-section', $1);
- }
- }
- }
- else {
+ if (!$self->{force}) {
exit 0 if ($self->{quiet});
print "Will not reinitialize already initialized repository (use -f to force)!\n";
exit 1;