From 9e8137238d1b7f558dd61c8737883e73c8368e4b Mon Sep 17 00:00:00 2001 From: Michael Haggerty Date: Thu, 4 Aug 2011 06:47:48 +0200 Subject: test-path-utils: Add subcommand "prefix_path" Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano diff --git a/test-path-utils.c b/test-path-utils.c index a410e30..3bc20e9 100644 --- a/test-path-utils.c +++ b/test-path-utils.c @@ -35,6 +35,19 @@ int main(int argc, char **argv) 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")) { char *prefix = strip_path_suffix(argv[2], argv[3]); printf("%s\n", prefix ? prefix : "(null)"); -- cgit v0.10.2-6-g49f6