Skip to content

Commit fd7edf4

Browse files
committed
portable/installer: make sure that connect.exe is available
The `mingw-w64-connect` package was just built and uploaded for the first time, long after the Git SDK reached version 1.0.0. So let's just install it on demand, if needed, before making the list of files to include into the installer or portable Git. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent a196e49 commit fd7edf4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

make-file-list.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ pacman_list () {
2626
sed 's/^[^ ]* //'
2727
}
2828

29+
# Packages that have been added after Git SDK 1.0.0 was released...
30+
pacman -S --needed --noconfirm mingw-w64-$ARCH-connect >&2 ||
31+
die "Could not install required packages"
32+
2933
pacman_list mingw-w64-$ARCH-git mingw-w64-$ARCH-git-doc-html \
3034
git-extra ncurses mintty vim openssh winpty \
3135
sed awk less grep gnupg tar findutils coreutils diffutils \

0 commit comments

Comments
 (0)