Skip to content

Commit 76c3cb6

Browse files
committed
/add relnote: no longer expect the i686 MSYS pcre2 package to be deployed
It's intentional now that that package is no longer deployed. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent aa2f13b commit 76c3cb6

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
@@ -168,7 +168,13 @@ const getMissingDeployments = async (package_name, version) => {
168168
const urls = []
169169
const msysName = package_name.replace(/^mingw-w64-/, '')
170170
if (packageNeedsBothMSYSAndMINGW(msysName)) {
171-
urls.push(...pacmanRepositoryURLs(msysName, version, architectures))
171+
urls.push(...pacmanRepositoryURLs(
172+
msysName,
173+
version,
174+
package_name === 'pcre2'
175+
? architectures.filter(e => e !== 'i686')
176+
: architectures
177+
))
172178
urls.push(...pacmanRepositoryURLs(`mingw-w64-${msysName}`, version, mingwArchitectures))
173179
} else if (package_name !== msysName) {
174180
urls.push(...pacmanRepositoryURLs(package_name, version, mingwArchitectures))

0 commit comments

Comments
 (0)