summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-15 21:05:28 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-15 21:05:28 +0100
commitdd494941b8214c08d2d7f019a948c569583f3fa5 (patch)
treed1dc96c9fa17ac33916305bf15d546c1088fbb1f
parentd43c7adfb4ea6d29c09d61ba8c4e0f77b4ad7094 (diff)
Try more to fix git clones.
-rwxr-xr-xcdist2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdist b/cdist
index 36d3bb5..da87f84 100755
--- a/cdist
+++ b/cdist
@@ -1041,7 +1041,7 @@ class Tree(object):
if os.path.exists(ref_path):
ref = '--reference %s' % ref_path
path = path.split(' ')[1]
- command('git submodule --quiet update %s %s' % (ref, path))
+ command('git -c protocol.file.allow=always submodule --quiet update %s %s' % (ref, path))
if os.path.exists('%s/wscript' % proj):
v = read_wscript_variable(proj, "VERSION");