constellation/bazel/sh/repo_command.sh.in
Paul Meyer dea41bd1ed
ci: refactor e2e test failure notifications (#1625)
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-04-12 16:06:26 +02:00

16 lines
290 B
Bash

#!/usr/bin/env bash
lib=$(realpath @@BASE_LIB@@) || exit 1
cmd=$(realpath @@CMD@@) || exit 1
args=@@ARGS@@
# shellcheck source=lib.bash
if ! source "${lib}"; then
echo "Error: could not find import"
exit 1
fi
cd "${BUILD_WORKSPACE_DIRECTORY}" || exit 1
"${cmd}" "${args[@]}" "${@}"