Skip to content

Commit 2eec158

Browse files
committed
fix: install p7zip-plugins for Fedora
1 parent 4a49195 commit 2eec158

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

dist/setup_cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/setup_cpp.mjs.map

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/sevenzip/sevenzip.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export function setupSevenZip(version: string, _setupDir: string, _arch: string)
2020
if (isArch()) {
2121
return setupPacmanPack("p7zip", version)
2222
} else if (hasDnf()) {
23-
return setupDnfPack("p7zip", version)
23+
setupDnfPack("p7zip", version)
24+
return setupDnfPack("p7zip-plugins", version)
2425
} else if (isUbuntu()) {
2526
return setupAptPack("p7zip-full", version)
2627
}

0 commit comments

Comments
 (0)