summaryrefslogtreecommitdiffstats
path: root/exec-cmd.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-07-28 22:23:39 +0200
committerJunio C Hamano <gitster@pobox.com>2020-07-29 00:02:17 +0200
commitdbbcd44fb47347a3fdbee88ea21805b7f4ac0b98 (patch)
tree169f4f51bef928dbc46241d80ab3bff7e3e4af11 /exec-cmd.c
parentargv-array: rename to strvec (diff)
downloadgit-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.tar.xz
git-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.zip
strvec: rename files from argv-array to strvec
This requires updating #include lines across the code-base, but that's all fairly mechanical, and was done with: git ls-files '*.c' '*.h' | xargs perl -i -pe 's/argv-array.h/strvec.h/' Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'exec-cmd.c')
-rw-r--r--exec-cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec-cmd.c b/exec-cmd.c
index 7deeab3039..bb24c2f3bc 100644
--- a/exec-cmd.c
+++ b/exec-cmd.c
@@ -1,7 +1,7 @@
#include "cache.h"
#include "exec-cmd.h"
#include "quote.h"
-#include "argv-array.h"
+#include "strvec.h"
#if defined(RUNTIME_PREFIX)