about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-04-21 22:35:49 +0200
committerAlan Pearce2024-04-21 22:36:57 +0200
commit39adffb21f20fd5590f188af8f4221dfd01a29e1 (patch)
treea1ab7c0c7519b3b32c3c16dc306177f567722548
parent3e8e5885a266e7a249855c17e35aa16f7cf011a9 (diff)
downloadwebsite-39adffb21f20fd5590f188af8f4221dfd01a29e1.tar.lz
website-39adffb21f20fd5590f188af8f4221dfd01a29e1.tar.zst
website-39adffb21f20fd5590f188af8f4221dfd01a29e1.zip
fix hyperlink check in CI
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index aca5f7a..053ce1e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,7 +51,8 @@
           checks = rec {
             default = hyperlink;
             hyperlink = pkgs.runCommandLocal "hyperlink" { } ''
-              ${pkgs.hyperlink}/bin/hyperlink ${packages.website}
+              ${pkgs.hyperlink}/bin/hyperlink ${packages.website}/website/public
+              touch $out
             '';
           };
         });