git-check-attr: Fix command-line handling to match docs
According to the git-check-attr synopsis, if the '--stdin' option is used then no pathnames are expected on the command line. Change the behavior to match this description; namely, if '--stdin' is used but not '--', then treat all command-line arguments as attribute names. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
c9d8f0ac3b
commit
ca64d061e0
|
@ -33,8 +33,11 @@ OPTIONS
|
||||||
|
|
||||||
\--::
|
\--::
|
||||||
Interpret all preceding arguments as attributes and all following
|
Interpret all preceding arguments as attributes and all following
|
||||||
arguments as path names. If not supplied, only the first argument will
|
arguments as path names.
|
||||||
be treated as an attribute.
|
|
||||||
|
If none of `--stdin`, `--all`, or `--` is used, the first argument
|
||||||
|
will be treated as an attribute and the rest of the arguments as
|
||||||
|
pathnames.
|
||||||
|
|
||||||
OUTPUT
|
OUTPUT
|
||||||
------
|
------
|
||||||
|
|
|
@ -111,15 +111,18 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix)
|
||||||
} else if (doubledash == 0) {
|
} else if (doubledash == 0) {
|
||||||
error_with_usage("No attribute specified");
|
error_with_usage("No attribute specified");
|
||||||
} else if (doubledash < 0) {
|
} else if (doubledash < 0) {
|
||||||
/*
|
|
||||||
* There is no double dash; treat the first
|
|
||||||
* argument as an attribute.
|
|
||||||
*/
|
|
||||||
if (!argc)
|
if (!argc)
|
||||||
error_with_usage("No attribute specified");
|
error_with_usage("No attribute specified");
|
||||||
|
|
||||||
cnt = 1;
|
if (stdin_paths) {
|
||||||
filei = 1;
|
/* Treat all arguments as attribute names. */
|
||||||
|
cnt = argc;
|
||||||
|
filei = argc;
|
||||||
|
} else {
|
||||||
|
/* Treat exactly one argument as an attribute name. */
|
||||||
|
cnt = 1;
|
||||||
|
filei = 1;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
cnt = doubledash;
|
cnt = doubledash;
|
||||||
filei = doubledash + 1;
|
filei = doubledash + 1;
|
||||||
|
|
|
@ -70,7 +70,6 @@ test_expect_success 'command line checks' '
|
||||||
echo "f" | test_must_fail git check-attr --stdin &&
|
echo "f" | test_must_fail git check-attr --stdin &&
|
||||||
echo "f" | test_must_fail git check-attr --stdin -- f &&
|
echo "f" | test_must_fail git check-attr --stdin -- f &&
|
||||||
echo "f" | test_must_fail git check-attr --stdin test -- f &&
|
echo "f" | test_must_fail git check-attr --stdin test -- f &&
|
||||||
echo "f" | test_must_fail git check-attr --stdin test f &&
|
|
||||||
test_must_fail git check-attr "" -- f
|
test_must_fail git check-attr "" -- f
|
||||||
|
|
||||||
'
|
'
|
||||||
|
|
Loading…
Reference in New Issue