Pete Wyckoff <pw@xxxxxxxx> writes: > Depot paths must start with //. Exit with a better explanation > when a bad depot path is supplied. > > Signed-off-by: Pete Wyckoff <pw@xxxxxxxx> > --- > git-p4.py | 1 + > t/t9800-git-p4-basic.sh | 5 +++++ > 2 files changed, 6 insertions(+) > > diff --git a/git-p4.py b/git-p4.py > index 97699ef..eef5c94 100755 > --- a/git-p4.py > +++ b/git-p4.py > @@ -3035,6 +3035,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: > diff --git a/t/t9800-git-p4-basic.sh b/t/t9800-git-p4-basic.sh > index b7ad716..c5f4c88 100755 > --- a/t/t9800-git-p4-basic.sh > +++ b/t/t9800-git-p4-basic.sh > @@ -30,6 +30,11 @@ test_expect_success 'basic git p4 clone' ' > ) > ' > > +test_expect_success 'depot typo error' ' > + test_must_fail git p4 clone --dest="$git" /depot 2>errs && > + grep -q "Depot paths must start with" errs > +' Use of "grep -q" does not help ordinary testers, as the output will not be shown when the tests are run normally. > test_expect_success 'git p4 clone @all' ' > git p4 clone --dest="$git" //depot@all && > test_when_finished cleanup_git && -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html