Skip to content

Commit 4232ee5

Browse files
committed
update-via-pacman: install the correct git-extra package at the end
The script still had one left-over from the MINGW64 flavor of Git for Windows' SDK: the final `pacman` call that ensures that the `git-extra` package is installed (mostly for the benefit of letting its post-install script modify all the things in a regular MSYS2 setup to what Git for Windows needs and which cannot be configured in any other way). With this commit, this script now installs the UCRT64 flavor of that package, and the migration of this script is now complete. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent dbbde74 commit 4232ee5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

update-via-pacman.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ if (!(Test-Path cmd\git.exe -PathType Leaf)) {
148148
}
149149

150150
# Wrapping up: re-install mingw-w64-git-extra
151-
bash -lc "pacman -S --overwrite=\* --noconfirm mingw-w64-x86_64-git-extra"
151+
bash -lc "pacman -S --overwrite=\* --noconfirm mingw-w64-ucrt-x86_64-git-extra"

0 commit comments

Comments
 (0)