mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-13 17:11:08 -05:00
bazel: fix ordering of injects
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
d6624a472d
commit
590931f3ac
1 changed files with 2 additions and 3 deletions
|
|
@ -8,15 +8,14 @@
|
||||||
lib=$(realpath @@BASE_LIB@@) || exit 1
|
lib=$(realpath @@BASE_LIB@@) || exit 1
|
||||||
stat "${lib}" >> /dev/null || exit 1
|
stat "${lib}" >> /dev/null || exit 1
|
||||||
|
|
||||||
yq=$(realpath @@YQ@@)
|
|
||||||
stat "${yq}" >> /dev/null
|
|
||||||
|
|
||||||
# shellcheck source=../sh/lib.bash
|
# shellcheck source=../sh/lib.bash
|
||||||
if ! source "${lib}"; then
|
if ! source "${lib}"; then
|
||||||
echo "Error: could not find import"
|
echo "Error: could not find import"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
yq=$(realpath @@YQ@@)
|
||||||
|
stat "${yq}" >> /dev/null
|
||||||
bootstrapper=$(realpath @@BOOTSTRAPPER@@)
|
bootstrapper=$(realpath @@BOOTSTRAPPER@@)
|
||||||
stat "${bootstrapper}" >> /dev/null
|
stat "${bootstrapper}" >> /dev/null
|
||||||
upgrade_agent=$(realpath @@UPGRADE_AGENT@@)
|
upgrade_agent=$(realpath @@UPGRADE_AGENT@@)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue