2024-07-06 16:25:54 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
##
|
|
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
set -eu
|
|
|
|
|
2024-08-06 12:15:24 -04:00
|
|
|
command -v git >/dev/null ||
|
|
|
|
{ printf '%s\n' "Missing program: git" >&2; exit 1; }
|
2024-07-10 08:36:05 -04:00
|
|
|
repo_toplevel="$(git rev-parse --show-toplevel)"
|
|
|
|
test -d "${repo_toplevel}" || exit 1
|
2024-07-19 09:29:17 -04:00
|
|
|
cd "${repo_toplevel}"
|
2024-07-10 08:36:05 -04:00
|
|
|
unset repo_toplevel
|
2024-07-06 16:25:54 -04:00
|
|
|
|
|
|
|
for tool in "${@}"; do
|
|
|
|
if ./scripts/requires-program.sh "${tool}" >/dev/null 2>&1; then
|
2024-08-06 12:15:24 -04:00
|
|
|
printf '%s\n' "${tool}"
|
2024-07-06 16:25:54 -04:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|