From 9fa01defbb6c922612c3a6eb1142206bbf255256 Mon Sep 17 00:00:00 2001
From: Jelte Fennema-Nio <postgres@jeltef.nl>
Date: Mon, 30 Mar 2026 23:16:32 +0200
Subject: [PATCH v4 5/7] Move pgindent to separate pgcheck script

Over time our pgindent script has gotten a lot of quality of life
features, like the --commit, --diff, --check, and --jobs flags. Our
pgperltidy, pgperlcritic and pgperlsyncheck are missing these features.
In the next commit these other tools will gain these quality of life
features too, by introducing a new tool called "pgcheck" that combines
the functionality of all tools. This commit only does:

   git mv src/tools/pgindent/pgindent src/tools/pgcheck/pgcheck

The resulting pgcheck script is not even functional, since some of the
hardcoded relative paths in the script are now incorrect. The only
reason this is separate from the next commit, is to to make git
understand that we moved the pgindent file, so the git history of the
pgindent file is transferred over correctly to the pgcheck file.
---
 src/tools/{pgindent/pgindent => pgcheck/pgcheck} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename src/tools/{pgindent/pgindent => pgcheck/pgcheck} (100%)

diff --git a/src/tools/pgindent/pgindent b/src/tools/pgcheck/pgcheck
similarity index 100%
rename from src/tools/pgindent/pgindent
rename to src/tools/pgcheck/pgcheck
-- 
2.53.0

