Use new http in bun upgrade

This commit is contained in:
Jarred Sumner
2021-12-18 20:03:00 -08:00
parent 501fab0bef
commit e2d6c692c4
8 changed files with 64 additions and 129 deletions

View File

@@ -435,13 +435,6 @@ pub fn build(b: *std.build.Builder) !void {
defer headers_step.dependOn(&headers_obj.step);
try configureObjectStep(headers_obj, target, exe.main_pkg_path.?);
}
{
const headers_step = b.step("hop-obj", "Build hop (object files)");
var headers_obj: *std.build.LibExeObjStep = b.addObject("hop", "misctools/hop.zig");
defer headers_step.dependOn(&headers_obj.step);
try configureObjectStep(headers_obj, target, exe.main_pkg_path.?);
}
} else {
b.default_step.dependOn(&exe.step);
}