Skip to content

Commit 6573bbb

Browse files
committed
/add relnote: no longer expect the i686 MSYS bash package to be deployed
As of the Bash v5.3.9 update (see git-for-windows/MSYS2-packages#269), it is intentional that the i686 variant of that package is no longer deployed. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 3ee25ca commit 6573bbb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

GitForWindowsHelper/component-updates.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,13 @@ const getMissingDeployments = async (package_name, version) => {
179179
} else if (package_name !== msysName) {
180180
urls.push(...pacmanRepositoryURLs(package_name, version, mingwArchitectures))
181181
} else {
182-
urls.push(...pacmanRepositoryURLs(package_name, version, architectures))
182+
urls.push(...pacmanRepositoryURLs(
183+
package_name,
184+
version,
185+
package_name === 'bash'
186+
? architectures.filter(e => e !== 'i686')
187+
: architectures
188+
))
183189
}
184190
const { doesURLReturn404 } = require('./https-request')
185191
const result = await Promise.all(urls.map(async url => doesURLReturn404(url)))

0 commit comments

Comments
 (0)