diff options
author | 2021-12-21 00:05:47 -0800 | |
---|---|---|
committer | 2021-12-21 00:05:47 -0800 | |
commit | e712d3458cc74a6fc7150cbd187c3f56374bc98f (patch) | |
tree | 4e6c33c7348dfb77d478bf5ce58dce5305f6d29d /build.zig | |
parent | 685681dedcee4a7ac414c964606750722973c823 (diff) | |
download | bun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.tar.gz bun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.tar.zst bun-e712d3458cc74a6fc7150cbd187c3f56374bc98f.zip |
Update build.zig
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |