]> asedeno.scripts.mit.edu Git - git.git/blobdiff - contrib/fast-import/git-p4
Fix support for "depot-path" in older git-p4 imports
[git.git] / contrib / fast-import / git-p4
index e955ad4f442d1e44cf96079f8589687ba487c26e..e576f2dd9efb39fcb86eda826b18a059828a87ef 100755 (executable)
@@ -153,7 +153,10 @@ def extractSettingsGitLog(log):
 
             values[key] = val
 
-    values['depot-paths'] = values.get("depot-paths").split(',')
+    paths = values.get("depot-paths")
+    if not paths:
+        paths = values.get("depot-path")
+    values['depot-paths'] = paths.split(',')
     return values
 
 def gitBranchExists(branch):