1
Fork 0
mirror of https://github.com/RGBCube/HTMNIX synced 2025-05-14 05:04:58 +00:00

Remove useless --apply from build.sh

This commit is contained in:
RGBCube 2024-03-04 10:55:39 +03:00
parent 7f54a2fedc
commit f3b874a89e
No known key found for this signature in database

View file

@ -13,7 +13,7 @@ for file in $(find site -type f); do
if [[ ! "${file##*/}" =~ ^_ ]]; then
if [[ "$file" =~ .nix$ ]]; then
echo "Processing file $file to _${file%.nix}.html..."
TARGET_FILE=$(realpath "$file") nix eval "${HTMNIX_REF:-github:RGBCube/HTMNIX}#result" --impure --raw --apply toString > "_${file%.nix}.html"
TARGET_FILE=$(realpath "$file") nix eval "${HTMNIX_REF:-github:RGBCube/HTMNIX}#result" --impure --raw > "_${file%.nix}.html"
else
echo "Copying file $file to _$file..."
cp "$file" "_$file"