test-path-utils: Add subcommand "prefix_path"
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
87a246e1b5
commit
9e8137238d
@ -35,6 +35,19 @@ int main(int argc, char **argv)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (argc >= 4 && !strcmp(argv[1], "prefix_path")) {
|
||||||
|
char *prefix = argv[2];
|
||||||
|
int prefix_len = strlen(prefix);
|
||||||
|
int nongit_ok;
|
||||||
|
setup_git_directory_gently(&nongit_ok);
|
||||||
|
while (argc > 3) {
|
||||||
|
puts(prefix_path(prefix, prefix_len, argv[3]));
|
||||||
|
argc--;
|
||||||
|
argv++;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) {
|
if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) {
|
||||||
char *prefix = strip_path_suffix(argv[2], argv[3]);
|
char *prefix = strip_path_suffix(argv[2], argv[3]);
|
||||||
printf("%s\n", prefix ? prefix : "(null)");
|
printf("%s\n", prefix ? prefix : "(null)");
|
||||||
|
Loading…
Reference in New Issue
Block a user