From f3b874a89e243be61349fca8c8641042faaeb6e1 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 4 Mar 2024 10:55:39 +0300 Subject: [PATCH] Remove useless --apply from build.sh --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 887fe22..04c1437 100755 --- a/build.sh +++ b/build.sh @@ -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"