1
Fork 0

build: remove extra directory

main
Motiejus Jakštys 2023-04-04 10:12:28 +03:00
parent f26dc8ed42
commit ba89c8d2ba
1 changed files with 2 additions and 3 deletions

View File

@ -37,8 +37,7 @@
buildPhase = ''
${pkgs.hugo}/bin/hugo --cleanDestinationDir --printPathWarnings --panicOnWarning --log
cd public
find . \
find public \
-name '*.html' -or \
-name '*.xml' -or \
-name '*.txt' -or \
@ -49,7 +48,7 @@
'';
installPhase = ''
cd ..; mv public $out
mv public $out
'';
};