mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
all: update to debian 13 (#24055) [publish images]
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# Version: 20
|
||||
# Version: 21
|
||||
|
||||
# A script that installs the dependencies needed to build and test Bun.
|
||||
# This should work on macOS and Linux with a POSIX shell.
|
||||
@@ -1766,7 +1766,7 @@ ensure_no_tmpfs() {
|
||||
if ! [ "$os" = "linux" ]; then
|
||||
return
|
||||
fi
|
||||
if ! [ "$distro" = "ubuntu" ]; then
|
||||
if ! ( [ "$distro" = "ubuntu" ] || [ "$distro" = "debian" ] ); then
|
||||
return
|
||||
fi
|
||||
|
||||
|
||||
@@ -2842,7 +2842,7 @@ export function printEnvironment() {
|
||||
|
||||
if (isCI) {
|
||||
startGroup("Environment", () => {
|
||||
for (const [key, value] of Object.entries(process.env)) {
|
||||
for (const [key, value] of Object.entries(process.env).toSorted()) {
|
||||
console.log(`${key}:`, value);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user