From d43ff345d290c8f733efa3f574be6c954cce91b1 Mon Sep 17 00:00:00 2001
From: Chris Cochrun <chris@cochrun.xyz>
Date: Fri, 6 Dec 2024 16:32:08 -0600
Subject: [PATCH] fixing

---
 flake.nix | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index c42ff42..b869eeb 100644
--- a/flake.nix
+++ b/flake.nix
@@ -141,7 +141,8 @@
               ${pkgs.hugo}/bin/hugo --minify
             '';
             installPhase = ''
-              cp -r public $out
+              mkdir -p $out/public
+              cp -r public $out/public
             '';
             buildInputs = bi;
             nativeBuildInputs = nbi;