Skip to content

Commit 3ee25ca

Browse files
committed
/deploy: no longer deploy the i686 MSYS variant of bash
The Bash v5.3.9 update causes i686-specific build failures due to a libreadline version clash; see git-for-windows/MSYS2-packages#269 Since 32-bit MinGit is the only remaining i686 artifact offered by Git for Windows, and there is nothing critical in this Bash update for it, fixing those build issues is not worth the trouble. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent c4326bb commit 3ee25ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitForWindowsHelper/slash-commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ module.exports = async (context, req) => {
200200
)
201201
}
202202

203-
if (package_name !== 'msys2-runtime' && package_name !== 'pcre2') {
203+
if (package_name !== 'msys2-runtime' && package_name !== 'pcre2' && package_name !== 'bash') {
204204
toTrigger.push(
205205
{ architecture: 'i686' }
206206
)

0 commit comments

Comments
 (0)