From 38dd418ef583a798ac75fdbc8cca81abbfd5a567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20A=C3=9Fhauer?= Date: Fri, 9 Jul 2021 05:18:25 +0200 Subject: [PATCH] make-file-list.sh: don't exclude /usr/share/nano MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The files in there are used by nano for syntax highlighting and get included from our /ec/nanorc. This is a partial revert of 43db63670e49f (make-file-list: exclude some unneeded files). This fixes git-for-windows/git#3315 Signed-off-by: Matthias Aßhauer --- make-file-list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-file-list.sh b/make-file-list.sh index 775f34f7a6..6fbc7cf02d 100755 --- a/make-file-list.sh +++ b/make-file-list.sh @@ -188,7 +188,7 @@ grep -v -e '\.[acho]$' -e '\.l[ao]$' -e '/aclocal/' \ -e '^/usr/share/perl5/core_perl/CPAN/' \ -e '^/usr/share/perl5/core_perl/TAP/' \ -e '^/usr/share/vim/vim74/lang/' \ - -e '^/usr/share/\(bash-completion\|makepkg\|nano\)/' \ + -e '^/usr/share/\(bash-completion\|makepkg\)/' \ -e '^/update-via-pacman.bat$' \ -e '^/etc/profile.d/git-sdk.sh$' | if test -n "$WITH_L10N" && test -z "$MINIMAL_GIT"