aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-21 00:05:47 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-21 00:05:47 -0800
commite712d3458cc74a6fc7150cbd187c3f56374bc98f (patch)
tree4e6c33c7348dfb77d478bf5ce58dce5305f6d29d /build.zig
parent685681dedcee4a7ac414c964606750722973c823 (diff)
downloadbun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.tar.gz
bun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.tar.zst
bun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.zip
Update build.zig
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index bc842c351..13bbb552a 100644
--- a/build.zig
+++ b/build.zig
@@ -97,7 +97,7 @@ fn addInternalPackages(step: *std.build.LibExeObjStep, allocator: *std.mem.Alloc
var output_dir: []const u8 = "";
fn panicIfNotFound(comptime filepath: []const u8) []const u8 {
var file = std.fs.cwd().openFile(filepath, .{ .read = true }) catch |err| {
- std.debug.panic("error: {s} opening {s}. Please ensure you've downloaded git submodules, and ran `make vendor`, `make jsc`." ++ linux_only, .{ filepath, @errorName(err) });
+ std.debug.panic("error: {s} opening {s}. Please ensure you've downloaded git submodules, and ran `make vendor`, `make jsc`.", .{ filepath, @errorName(err) });
};
file.close();