From ea294f5fecfe9ceb30a6e7a81c9e449e9f7dc665 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 28 Feb 2024 13:31:45 +0300 Subject: [PATCH] Remove 'done!' echos from build.sh --- build.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.sh b/build.sh index d5beca1..887fe22 100755 --- a/build.sh +++ b/build.sh @@ -14,13 +14,9 @@ for file in $(find site -type f); do 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" - echo "Done!" else echo "Copying file $file to _$file..." cp "$file" "_$file" - echo "Done!" fi fi done - -echo "All done!"