Skip to content

Commit 8e01a5f

Browse files
author
Ian Lewis
authored
Fix builder-fetch.sh path (#1221)
* Fix path Signed-off-by: Ian Lewis <[email protected]> * set working dir Signed-off-by: Ian Lewis <[email protected]> * Revert "set working dir" This reverts commit c66aa7b. Signed-off-by: Ian Lewis <[email protected]>
1 parent 1934fc2 commit 8e01a5f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/actions/generate-builder/generate-builder.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
if [[ "$COMPILE_BUILDER" = true ]]; then
4+
if [[ "$COMPILE_BUILDER" == true ]]; then
55
echo "Building the builder"
66

77
cd "$BUILDER_DIR"
@@ -19,8 +19,7 @@ if [[ "$COMPILE_BUILDER" = true ]]; then
1919
else
2020
echo "Fetching the builder with ref: $BUILDER_REF"
2121

22-
.github/actions/generate-builder/builder-fetch.sh
23-
22+
./__BUILDER_CHECKOUT_DIR__/.github/actions/generate-builder/builder-fetch.sh
2423
fi
2524

2625
chmod u+x "$BUILDER_RELEASE_BINARY"

0 commit comments

Comments
 (0)