Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2013-01-27 07:11:06 +0400
committerJunio C Hamano <gitster@pobox.com>2013-01-27 10:00:38 +0400
commit0f487d308d819cf6c64b866cb2f5c366a13b1639 (patch)
tree92bcd0fe266f6a87028736c8cea6395d54b619fc /git-p4.py
parentf629fa597c1736a419e2bd68bbca2883c6a143cf (diff)
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 47d092d2e5..cbf8525594 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: