mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
scripts/setup.sh: don't check for zig since it installs zig later (#7870)
* scripts/setup.sh: don't check for zig since it installs zig later * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -32,7 +32,6 @@ for type in CC CXX; do
|
||||
) || fail "LLVM ${LLVM_VERSION} is required. Detected $type as '$compiler'"
|
||||
done
|
||||
|
||||
has_exec "zig" || fail "'zig' is missing"
|
||||
has_exec "bun" || fail "you need an existing copy of 'bun' in your path to build bun"
|
||||
has_exec "cmake" || fail "'cmake' is missing"
|
||||
has_exec "ninja" || fail "'ninja' is missing"
|
||||
|
||||
@@ -5,10 +5,10 @@ import { tempDirWithFiles } from "harness";
|
||||
it("duplicate dependencies should warn instead of error", () => {
|
||||
const package_json = JSON.stringify({
|
||||
devDependencies: {
|
||||
"empty-package-for-bun-test-runner": "1.0.0"
|
||||
"empty-package-for-bun-test-runner": "1.0.0",
|
||||
},
|
||||
dependencies: {
|
||||
"empty-package-for-bun-test-runner": "1.0.0"
|
||||
"empty-package-for-bun-test-runner": "1.0.0",
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user