diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-05 18:45:04 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-05 18:45:04 +0800 |
commit | c7f60ec3f95ddf00a751d9f81ee57625cd13d74c (patch) | |
tree | d69f626190589ac131c68146393ee6e247996226 /scripts/indent | |
parent | Don't vendor dependencies for now (diff) | |
download | forge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.tar.gz forge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.tar.zst forge-c7f60ec3f95ddf00a751d9f81ee57625cd13d74c.zip |
scripts: Remove the indent script
Diffstat (limited to 'scripts/indent')
-rwxr-xr-x | scripts/indent | 14 |
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 '{}' ';' |