aboutsummaryrefslogtreecommitdiff
path: root/scripts/indent
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-05 18:45:04 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-05 18:45:04 +0800
commitc7f60ec3f95ddf00a751d9f81ee57625cd13d74c (patch)
treed69f626190589ac131c68146393ee6e247996226 /scripts/indent
parentDon't vendor dependencies for now (diff)
downloadforge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.tar.gz
forge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.tar.zst
forge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.zip
scripts: Remove the indent script
Diffstat (limited to '')
-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 '{}' ';'