constellation/bazel/ci/tidy.sh.in
Paul Meyer 02c97fac03 bazel: add tidy and check
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-14 03:43:51 -04:00

19 lines
331 B
Bash
Executable File

#!/usr/bin/env bash
lib=$(realpath @@BASE_LIB@@)
go=$(realpath @@GO@@)
# shellcheck source=lib.bash
if ! source "${lib}"; then
echo "Error: could not find import"
exit 1
fi
cd "${BUILD_WORKSPACE_DIRECTORY}" || exit 1
submodules=$(${go} list -f '{{.Dir}}' -m)
for mod in ${submodules}; do
${go} mod tidy -C "${mod}"
done