update to latest zig
This commit is contained in:
parent
404cbdd221
commit
ac13490410
3 changed files with 4 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -9,7 +9,7 @@
|
|||
# Cheers!
|
||||
# -andrewrk
|
||||
|
||||
zig-cache/
|
||||
.zig-cache/
|
||||
zig-out/
|
||||
/release/
|
||||
/debug/
|
||||
|
|
|
@ -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,
|
||||
});
|
||||
|
|
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue