Skip to content

Commit b7dcc5b

Browse files
committed
fix: do not use apt due to race conditions
1 parent 264de9a commit b7dcc5b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.

packages/setup-apt/src/get-apt.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export function getApt() {
3737
return "nala"
3838
} else if (hasAptFast()) {
3939
return "apt-fast"
40-
} else if (hasApt()) {
41-
return "apt"
40+
// } else if (hasApt()) {
41+
// return "apt"
4242
} else if (hasAptGet()) {
4343
return "apt-get"
4444
} else {

0 commit comments

Comments
 (0)