diff options
author | 2021-12-27 22:29:36 -0800 | |
---|---|---|
committer | 2021-12-27 22:29:36 -0800 | |
commit | 5a42b59e917e60eaefd8191125f7babd2396d5f4 (patch) | |
tree | bef08ea0470fde44975c9433d2d27cb36c00d83e | |
parent | 266870fee86f11efabc7ef9081344d48173504b5 (diff) | |
download | bun-5a42b59e917e60eaefd8191125f7babd2396d5f4.tar.gz bun-5a42b59e917e60eaefd8191125f7babd2396d5f4.tar.zst bun-5a42b59e917e60eaefd8191125f7babd2396d5f4.zip |
Update add_completions.zig
-rw-r--r-- | src/cli/add_completions.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/add_completions.zig b/src/cli/add_completions.zig index c2b2b3e19..6502a6850 100644 --- a/src/cli/add_completions.zig +++ b/src/cli/add_completions.zig @@ -32,7 +32,7 @@ pub const FirstLetter = enum(u8) { }; pub const Index = std.EnumArray(FirstLetter, []const []const u8); -pub const index: Index = if (Environment.isDebug) Index.initFill(&.{}) else brk: { +pub const index: Index = if (Environment.isDebug) Index.initFill(&.{"OOMWorkAround"}) else brk: { var array: Index = Index.initFill(&[_][]const u8{}); var i: u8 = 'a'; |