Skip to content

Commit 477dd40

Browse files
committed
fix: ignore version for doxygen on alpine
1 parent 2ee99e2 commit 477dd40

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

dist/legacy/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/legacy/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/modern/setup-cpp.mjs

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

dist/modern/setup-cpp.mjs.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.

src/doxygen/doxygen.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,12 @@ async function setupLinuxDoxygen(version: string, setupDir: string, arch: string
112112
} else if (isUbuntu()) {
113113
return await installAptPack([{ name: "doxygen", version, fallBackToLatest: arm64.includes(arch) }])
114114
} else if (await hasApk()) {
115-
return installApkPack([{ name: "doxygen", version }])
115+
return installApkPack([
116+
{
117+
name: "doxygen",
118+
// version,
119+
},
120+
])
116121
} else {
117122
throw new Error("Unsupported linux distributions")
118123
}

0 commit comments

Comments
 (0)