##// END OF EJS Templates
convert/git: abort if git submodules are detected (issue2150)...
Augie Fackler -
r16292:101c8a1b stable
parent child Browse files
Show More
@@ -97,6 +97,8 b' class convert_git(converter_source):'
97 seen.add(f)
97 seen.add(f)
98 entry = entry.split()
98 entry = entry.split()
99 h = entry[3]
99 h = entry[3]
100 if entry[1] == '160000':
101 raise util.Abort('git submodules are not supported!')
100 p = (entry[1] == "100755")
102 p = (entry[1] == "100755")
101 s = (entry[1] == "120000")
103 s = (entry[1] == "120000")
102 self.modecache[(f, h)] = (p and "x") or (s and "l") or ""
104 self.modecache[(f, h)] = (p and "x") or (s and "l") or ""
General Comments 0
You need to be logged in to leave comments. Login now