update to latest zig

This commit is contained in:
Jeeves 2024-07-23 17:17:50 -06:00
parent 404cbdd221
commit ac13490410
3 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View file

@ -9,7 +9,7 @@
# Cheers!
# -andrewrk
zig-cache/
.zig-cache/
zig-out/
/release/
/debug/

View file

@ -6,7 +6,7 @@ pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
.name = "statusbar",
.root_source_file = .{ .path = "src/main.zig" },
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
@ -22,7 +22,7 @@ pub fn build(b: *std.Build) void {
run_step.dependOn(&run_cmd.step);
const exe_unit_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});

View file

@ -15,7 +15,7 @@ pub fn getBlock(module: *Module, allocator: std.mem.Allocator) !Module.Block {
_ = module;
// const self: *const Self = @fieldParentPtr("module", module);
const child = try std.ChildProcess.run(.{
const child = try std.process.Child.run(.{
.argv = &[_][]const u8{ "amixer", "sget", "Master" },
.allocator = allocator,
});