aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/indent14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/indent b/scripts/indent
deleted file mode 100755
index 120685f..0000000
--- a/scripts/indent
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-#
-# SPDX-License-Identifier: AGPL-3.0-only
-# SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
-
-set -eu
-
-if [ x"$(indent --version)" != x'FreeBSD indent 2.0' ]
-then
- printf 'indent(1) version mismatch\n' >&2
- exit 1
-fi
-
-find . -name '*.c' -exec indent '{}' ';'