File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17482,7 +17482,7 @@ async function run() {
17482
17482
} else if (distro === "arch") {
17483
17483
// partial upgrades are not supported so also upgrade everything
17484
17484
await execShellCommand(optionalSudoPrefix + 'pacman -Syu --noconfirm xz openssh');
17485
- } else if (distro === "fedora") {
17485
+ } else if (distro === "fedora" || distro === "centos" || distro === "rhel" || distro === "almalinux" ) {
17486
17486
await execShellCommand(optionalSudoPrefix + 'dnf install -y xz openssh');
17487
17487
} else {
17488
17488
await execShellCommand(optionalSudoPrefix + 'apt-get update');
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export async function run() {
96
96
} else if ( distro === "arch" ) {
97
97
// partial upgrades are not supported so also upgrade everything
98
98
await execShellCommand ( optionalSudoPrefix + 'pacman -Syu --noconfirm xz openssh' ) ;
99
- } else if ( distro === "fedora" ) {
99
+ } else if ( distro === "fedora" || distro === "centos" || distro === "rhel" || distro === "almalinux" ) {
100
100
await execShellCommand ( optionalSudoPrefix + 'dnf install -y xz openssh' ) ;
101
101
} else {
102
102
await execShellCommand ( optionalSudoPrefix + 'apt-get update' ) ;
You can’t perform that action at this time.
0 commit comments