mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
3a04786412
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
16 lines
365 B
Bash
16 lines
365 B
Bash
#!/usr/bin/env bash
|
|
|
|
lib=$(realpath @@BASE_LIB@@) || exit 1
|
|
actionlint=$(realpath @@ACTIONLINT@@) || exit 1
|
|
shellcheck=$(realpath @@SHELLCHECK@@ || echo) || exit 1
|
|
|
|
# shellcheck source=../sh/lib.bash
|
|
if ! source "${lib}"; then
|
|
echo "Error: could not find import"
|
|
exit 1
|
|
fi
|
|
|
|
cd "${BUILD_WORKSPACE_DIRECTORY}" || exit 1
|
|
|
|
${actionlint} -shellcheck="${shellcheck}"
|