diff options
author | 2023-06-18 13:45:41 +0300 | |
---|---|---|
committer | 2023-06-18 03:45:41 -0700 | |
commit | 873f615358b78f913b3f8fe6adda47da7e6e57ac (patch) | |
tree | 284b94274ecc1ef85a2a5d29081586f7f17e7fbe /src/js/out/modules/thirdparty/detect-libc.linux.js | |
parent | b2af1984ed6db162468f3dd8c6d460420d4f4a2e (diff) | |
download | bun-873f615358b78f913b3f8fe6adda47da7e6e57ac.tar.gz bun-873f615358b78f913b3f8fe6adda47da7e6e57ac.tar.zst bun-873f615358b78f913b3f8fe6adda47da7e6e57ac.zip |
minor build diffs (#3349)
Diffstat (limited to 'src/js/out/modules/thirdparty/detect-libc.linux.js')
-rw-r--r-- | src/js/out/modules/thirdparty/detect-libc.linux.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/out/modules/thirdparty/detect-libc.linux.js b/src/js/out/modules/thirdparty/detect-libc.linux.js index 987ae9aa6..1c4e18a7a 100644 --- a/src/js/out/modules/thirdparty/detect-libc.linux.js +++ b/src/js/out/modules/thirdparty/detect-libc.linux.js @@ -2,13 +2,13 @@ function family() { return Promise.resolve(familySync()); } function familySync() { - return GLIBC; + return null; } function versionAsync() { return Promise.resolve(version()); } function version() { - return "2.29"; + return null; } function isNonGlibcLinuxSync() { return !1; |