Lindenii Project Forge
Login

server

Lindenii Forge’s main backend daemon
Commit info
ID
c7f60ec3f95ddf00a751d9f81ee57625cd13d74c
Author
Runxi Yu <me@runxiyu.org>
Author date
Sat, 05 Apr 2025 18:45:04 +0800
Committer
Runxi Yu <me@runxiyu.org>
Committer date
Sat, 05 Apr 2025 18:45:04 +0800
Actions
scripts: Remove the indent script
#!/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 '{}' ';'