Skip to content

Commit

Permalink
Don't mark bootstrap script early as finished
Browse files Browse the repository at this point in the history
  • Loading branch information
Qonfused committed Feb 26, 2024
1 parent ac37f8f commit 7f51577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/bootstrap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $BINARY_URL="$OCEBUILD_URL/releases/download/$OCEBUILD_VERSION/ocebuild.exe"
$BINARY_PATH="$env:TEMP\ocebuild.exe"
Bootstrap-Exe -uri $BINARY_URL -dest $BINARY_PATH

Write-Host "Done.`n"
Write-Host ""

$ARGS = $($arguments -join ' ')
Start-Process -Wait $BINARY_PATH -NoNewWindow -ArgumentList $ARGS
Expand Down
2 changes: 1 addition & 1 deletion ci/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ echo "Downloading OCE Build CLI..."
# Download the binary release for the current platform
BINARY_URL="$OCEBUILD_URL/releases/download/$OCEBUILD_VERSION/$(ext ocebuild)"
$(cmd curl) -sSL -k $BINARY_URL > "$BINARY_PATH"
echo -e "Done.\\n"
echo ""

# Executes OCE Build with provided arguments
if [[ $(os) != "windows" ]]; then chmod +x "$BINARY_PATH"; fi
Expand Down

0 comments on commit 7f51577

Please sign in to comment.