Skip to content

Commit 55f53bf

Browse files
committed
Add --nodeps to gcc upgrade
1 parent baf877d commit 55f53bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ const updateGCC = async () => {
633633
if (ruby.abiVers >= '2.4') {
634634
msSt = grpSt(`Upgrading gcc for Ruby ${ruby.vers}`)
635635
let gccPkgs = ['', 'binutils', 'crt', 'dlfcn', 'headers', 'libiconv', 'isl', 'make', 'mpc', 'mpfr', 'windows-default-manifest', 'libwinpthread', 'libyaml', 'winpthreads', 'zlib', 'gcc-libs', 'gcc']
636-
execSync(`pacman.exe ${msys2Sync} ${args} ${gccPkgs.join(pre)}`)
636+
execSync(`pacman.exe ${msys2Sync} --nodeps ${args} ${gccPkgs.join(pre)}`)
637637
grpEnd(msSt)
638638
}
639639

mingw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const updateGCC = async () => {
102102
if (ruby.abiVers >= '2.4') {
103103
msSt = grpSt(`Upgrading gcc for Ruby ${ruby.vers}`)
104104
let gccPkgs = ['', 'binutils', 'crt', 'dlfcn', 'headers', 'libiconv', 'isl', 'make', 'mpc', 'mpfr', 'windows-default-manifest', 'libwinpthread', 'libyaml', 'winpthreads', 'zlib', 'gcc-libs', 'gcc']
105-
execSync(`pacman.exe ${msys2Sync} ${args} ${gccPkgs.join(pre)}`)
105+
execSync(`pacman.exe ${msys2Sync} --nodeps ${args} ${gccPkgs.join(pre)}`)
106106
grpEnd(msSt)
107107
}
108108

0 commit comments

Comments
 (0)