style: format aws-task-runner.ts to satisfy Prettier

This commit is contained in:
Frostebite
2025-09-06 21:19:04 +01:00
parent 8f66ff2893
commit ce848c7a6d
4 changed files with 23 additions and 5 deletions
@@ -93,7 +93,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
BRANCH="${CloudRunner.buildParameters.cloudRunnerBranch}"
REPO="${CloudRunnerFolders.unityBuilderRepoUrl}"
DEST="${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.builderPathAbsolute)}"
if git ls-remote --heads "$REPO" "$BRANCH" >/dev/null 2>&1; then
if [ -n "$(git ls-remote --heads \"$REPO\" \"$BRANCH\" 2>/dev/null)" ]; then
git clone -q -b "$BRANCH" "$REPO" "$DEST"
else
echo "Remote branch $BRANCH not found in $REPO; falling back to a known branch"