From 9633ba6c92e59c1a1483e11b1bb01e6cadbb37ec Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 26 Mar 2025 13:20:04 -0500 Subject: [PATCH] fixxy plz --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8604086..64cfaa6 100644 --- a/flake.nix +++ b/flake.nix @@ -102,7 +102,9 @@ ${pkgs.hugo}/bin/hugo --minify ''; installPhase = '' + ls -l cp -r public $out/ + ls -l $out ''; buildInputs = bi; nativeBuildInputs = nbi; @@ -133,7 +135,8 @@ fixupPhase = '' ls -l ls -l $out - cp -r ${site}/public $out/ + mkdir -p public + cp -r ${site}/* $out/public ls -l $out ''; };