Skip to content

Commit

Permalink
Fix builder-fetch.sh path (#1221)
Browse files Browse the repository at this point in the history
* Fix path

Signed-off-by: Ian Lewis <ianlewis@google.com>

* set working dir

Signed-off-by: Ian Lewis <ianlewis@google.com>

* Revert "set working dir"

This reverts commit c66aa7b.

Signed-off-by: Ian Lewis <ianlewis@google.com>
  • Loading branch information
ianlewis committed Nov 9, 2022
1 parent 1934fc2 commit 8e01a5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/generate-builder/generate-builder.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail

if [[ "$COMPILE_BUILDER" = true ]]; then
if [[ "$COMPILE_BUILDER" == true ]]; then
echo "Building the builder"

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

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

./__BUILDER_CHECKOUT_DIR__/.github/actions/generate-builder/builder-fetch.sh
fi

chmod u+x "$BUILDER_RELEASE_BINARY"

0 comments on commit 8e01a5f

Please sign in to comment.