diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-03-27 20:24:57 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-03-27 20:24:57 +0000 |
commit | 525ade5a6de3837699b5c7e66686c3e5c8b5a1f3 (patch) | |
tree | 6dd9526cc46ef71e111ec6acbedff7d9f6114f5c | |
parent | 0882d48bb1514e75f579dad6539c74c4aeb170cf (diff) | |
download | mfashby.net-525ade5a6de3837699b5c7e66686c3e5c8b5a1f3.tar.gz mfashby.net-525ade5a6de3837699b5c7e66686c3e5c8b5a1f3.tar.bz2 mfashby.net-525ade5a6de3837699b5c7e66686c3e5c8b5a1f3.tar.xz mfashby.net-525ade5a6de3837699b5c7e66686c3e5c8b5a1f3.zip |
Use a fixed version of zine rather than a local checkout
-rw-r--r-- | build.zig | 8 | ||||
-rw-r--r-- | build.zig.zon | 6 |
2 files changed, 6 insertions, 8 deletions
@@ -6,9 +6,7 @@ pub fn build(b: *std.Build) !void { .layouts_dir_path = "layouts", .content_dir_path = "content", .static_dir_path = "static", - .site = .{ - .base_url = "https://mfashby.net", - .title = "mfashby.net", - }, + .host_url = "https://mfashby.net", + .title = "mfashby.net", }); -}
\ No newline at end of file +} diff --git a/build.zig.zon b/build.zig.zon index b803ff9..268ad8d 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -3,9 +3,9 @@ .version = "0.0.0", .dependencies = .{ .zine = .{ - //.url = "git+https://github.com/kristoff-it/zine.git#beb5434a04fad660ecf8db8379532dfe5b5e13b0", - //.hash = "12203c37cb5fb3931d3b7d1f1dace46cf5329ffe2fb5a8d2ac87dc78630ce7f601a7", - .path = "../zine", + .url = "git+https://github.com/kristoff-it/zine.git#e33a1d79b09e8532db60347a7ec4bd3413888977", + .hash = "12209f9be74fcc805c0f086e4a81ccca041354448f5b3592e04b6a6d1b4a95da5a26", + //.path = "../zine", }, }, .paths = .{"."}, |