You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a left-over IgnorePkg = pacman line in /etc/pacman.conf; I noticed this while investigating why the symptom (a failing sync workflow) did that gave rise to git-for-windows#88 was not seen in git-sdk-arm64, and that left-over line explains it.
The text was updated successfully, but these errors were encountered:
- sed -i 's/^#\? *\(IgnorePkg *=\).*/\1 msys2-runtime/' etc/pacman.conf &&+ sed -i 's/^\(# *\(IgnorePkg *=\).*\| *\(IgnorePkg =.*\)\)/\2\3 msys2-runtime/' etc/pacman.conf &&
i.e. if a commented-out IgnorePkg line was found, it should have been replaced by an un-commented line that only adds msys2-runtime, but if an already uncommented IgnorePkg line was found, it should have appendedmsys2-runtime.
There is a left-over
IgnorePkg = pacman
line in/etc/pacman.conf
; I noticed this while investigating why the symptom (a failingsync
workflow) did that gave rise to git-for-windows#88 was not seen in git-sdk-arm64, and that left-over line explains it.The text was updated successfully, but these errors were encountered: