Skip to content

Commit e3cb2f2

Browse files
committed
installer: do not exclude GNU TLS (needed for HTTPS transport)
Yonggang Luo pointed out that skipping the GNU TLS files breaks HTTPS support of Git. Instead of GNU TLS, let's skip rtmpdump, though, because it is *really* not needed for Git to work correctly. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 59b8e08 commit e3cb2f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make-file-list.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ pacman_list () {
1414
do
1515
pactree -u "$arg"
1616
done |
17-
grep -ve "^mingw-w64-$ARCH-gnutls$" -e '^db$' -e '^info$' \
18-
-e '^heimdal$' |
17+
grep -ve "^mingw-w64-$ARCH-rtmpdump-git$" -e '^db$' \
18+
-e '^info$' -e '^heimdal$' |
1919
sort |
2020
uniq) &&
2121
if test -n "$PACKAGE_VERSIONS_FILE"

0 commit comments

Comments
 (0)