drop -n from git clone command

This commit is contained in:
Karsten Hopp
2016-07-04 15:22:57 +02:00
parent e5bd3418d2
commit e37310ab8b

View File

@@ -134,7 +134,7 @@ class SCM(object):
commonrepo = os.path.dirname(gitrepo[:-4]) + '/common.git'
sourcedir = '%s/%s' % (scmdir, checkout_path)
module_checkout_cmd = ['git', 'clone', '-n', gitrepo, sourcedir]
module_checkout_cmd = ['git', 'clone', gitrepo, sourcedir]
# perform checkouts
self._run(module_checkout_cmd, chdir=scmdir)