constellation/bazel/ci/actionlint.sh.in
Paul Meyer d7fafb92b7 bazel: improve script template resilience
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-29 12:51:40 -04:00

23 lines
481 B
Bash

#!/usr/bin/env bash
###### script header ######
lib=$(realpath @@BASE_LIB@@) || exit 1
stat "${lib}" >> /dev/null || exit 1
# shellcheck source=../sh/lib.bash
if ! source "${lib}"; then
echo "Error: could not find import"
exit 1
fi
actionlint=$(realpath @@ACTIONLINT@@)
stat "${actionlint}" >> /dev/null
shellcheck=$(realpath @@SHELLCHECK@@ || echo) # might not exist
cd "${BUILD_WORKSPACE_DIRECTORY}"
###### script body ######
${actionlint} -shellcheck="${shellcheck}"