Trailing slash is needed?

This commit is contained in:
Lyle Mantooth 2025-06-25 14:11:01 -04:00
parent 1f9a5f88f4
commit 3a8347b6ae
Signed by: IslandUsurper
SSH key fingerprint: SHA256:7OQGnFyxgqLkSqpNeuqXgKL+0NmXES1atELKc4dKOw8

View file

@ -20,10 +20,10 @@
nativeBuildInputs = [ zola ]; nativeBuildInputs = [ zola ];
configurePhase = '' configurePhase = ''
mkdir -p "themes/${themeName}" mkdir -p "themes/${themeName}"
cp -rf ${hermit-zola}/* "themes/${themeName}" cp -r ${hermit-zola}/* "themes/${themeName}/"
''; '';
buildPhase = "zola build"; buildPhase = "${zola}/bin/zola build";
installPhase = "cp -rf public $out"; installPhase = "cp -r public $out";
}; };
defaultPackage = self.packages.${system}.blog; defaultPackage = self.packages.${system}.blog;