aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-05 11:01:16 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-05 11:01:16 -0500
commit0f04860ac07ac03edf758607d343afa672bf25d4 (patch)
tree3dac6859509a576afadf05201b80400a562ee9ac /build.zig
parentc22c5d474d4c5c4ce9b4c29b39523f238a03f41d (diff)
parente4b8779ee59a8f514983657d1609e99c336c8b75 (diff)
downloadziglings-0f04860ac07ac03edf758607d343afa672bf25d4.tar.gz
ziglings-0f04860ac07ac03edf758607d343afa672bf25d4.tar.bz2
ziglings-0f04860ac07ac03edf758607d343afa672bf25d4.tar.xz
ziglings-0f04860ac07ac03edf758607d343afa672bf25d4.zip
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index ee44d52..9c379ea 100644
--- a/build.zig
+++ b/build.zig
@@ -348,7 +348,7 @@ pub fn build(b: *Builder) void {
\\ _ _ _
\\ ___(_) __ _| (_)_ __ __ _ ___
\\ |_ | |/ _' | | | '_ \ / _' / __|
- \\ / /| | (_| | | | | | | (_| \__ \
+ \\ / /| | (_| | | | | | | (_| \__ \
\\ /___|_|\__, |_|_|_| |_|\__, |___/
\\ |___/ |___/
\\
@@ -525,7 +525,7 @@ const ZiglingStep = struct {
zig_args.append(@tagName(builder.color)) catch unreachable;
}
- const zig_file = std.fs.path.join(builder.allocator, &[_][]const u8{
+ const zig_file = std.fs.path.join(builder.allocator, &[_][]const u8{
if (self.use_healed) "patches/healed" else "exercises", self.exercise.main_file }) catch unreachable;
zig_args.append(builder.pathFromRoot(zig_file)) catch unreachable;