From 525ade5a6de3837699b5c7e66686c3e5c8b5a1f3 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Wed, 27 Mar 2024 20:24:57 +0000 Subject: Use a fixed version of zine rather than a local checkout --- build.zig | 8 +++----- build.zig.zon | 6 +++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/build.zig b/build.zig index be8dda0..3544a38 100644 --- a/build.zig +++ b/build.zig @@ -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 = .{"."}, -- cgit v1.2.3-ZIG