summaryrefslogtreecommitdiff
path: root/git-p4.py
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2013-01-27 03:11:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-27 06:00:38 (GMT)
commit0f487d308d819cf6c64b866cb2f5c366a13b1639 (patch)
tree92bcd0fe266f6a87028736c8cea6395d54b619fc /git-p4.py
parentf629fa597c1736a419e2bd68bbca2883c6a143cf (diff)
downloadgit-0f487d308d819cf6c64b866cb2f5c366a13b1639.zip
git-0f487d308d819cf6c64b866cb2f5c366a13b1639.tar.gz
git-0f487d308d819cf6c64b866cb2f5c366a13b1639.tar.bz2
git p4: generate better error message for bad depot path
Depot paths must start with //. Exit with a better explanation when a bad depot path is supplied. Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-p4.py')
-rwxr-xr-xgit-p4.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-p4.py b/git-p4.py
index 47d092d..cbf8525 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -3163,6 +3163,7 @@ class P4Clone(P4Sync):
self.cloneExclude = ["/"+p for p in self.cloneExclude]
for p in depotPaths:
if not p.startswith("//"):
+ sys.stderr.write('Depot paths must start with "//": %s\n' % p)
return False
if not self.cloneDestination: