diff options
author | 2021-12-07 16:20:27 -0800 | |
---|---|---|
committer | 2021-12-16 19:18:51 -0800 | |
commit | 41c60fb8483d012c6c874ba4e1ab70c91b227595 (patch) | |
tree | 7daaea30e15562aa393ddc3d968d1e2ec64f6343 /src/env.zig | |
parent | 8df49bc8230623aaa4320e8562385a3f71ac71c9 (diff) | |
download | bun-41c60fb8483d012c6c874ba4e1ab70c91b227595.tar.gz bun-41c60fb8483d012c6c874ba4e1ab70c91b227595.tar.zst bun-41c60fb8483d012c6c874ba4e1ab70c91b227595.zip |
[bun install] move around some code
Diffstat (limited to 'src/env.zig')
-rw-r--r-- | src/env.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.zig b/src/env.zig index 9903d2b5c..bdf3c2ae7 100644 --- a/src/env.zig +++ b/src/env.zig @@ -24,5 +24,5 @@ pub const isLinux = std.Target.current.os.tag == .linux; pub const isAarch64 = std.Target.current.cpu.arch.isAARCH64(); pub const isX86 = std.Target.current.cpu.arch.isX86(); pub const isX64 = std.Target.current.cpu.arch == .x86_64; - +pub const allow_assert = isDebug or isTest; pub const analytics_url = if (isDebug) "http://localhost:4000/events" else "http://i.bun.sh/events"; |