From e49a17ea56f8c6706323c481176f9244f607df93 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Wed, 27 May 2026 13:25:57 +0500 Subject: [PATCH] nix(docs): print message to console on script runs It's not immediately visible that these scripts are run when doing `postgrest-docs-check`. Signed-off-by: Taimoor Zaeem (cherry picked from commit e1d547623ec541076a13db43222fdbb7b6f68013) --- nix/tools/docs.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/tools/docs.nix b/nix/tools/docs.nix index ec7bddd50..9c951d98e 100644 --- a/nix/tools/docs.nix +++ b/nix/tools/docs.nix @@ -122,6 +122,8 @@ let workingDir = "/docs"; } '' + echo "Checking spelling mistakes..." + export LC_ALL=C FILES=$(find . -type f -iname '*.rst' | tr '\n' ' ') @@ -144,6 +146,8 @@ let workingDir = "/docs"; } '' + echo "Detecting obsolete dictionary entries..." + export LC_ALL=C FILES=$(find . -type f -iname '*.rst' | tr '\n' ' ')