From 639fd3bddb03789a01375464003215d233639415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dino=20Fejzagi=C4=87?= Date: Wed, 13 Jan 2021 16:00:25 +0100 Subject: [PATCH] Fix path to build tools --- stages/steps/build-unity-player.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/steps/build-unity-player.yml b/stages/steps/build-unity-player.yml index e5170d7..4651578 100644 --- a/stages/steps/build-unity-player.yml +++ b/stages/steps/build-unity-player.yml @@ -4,7 +4,7 @@ steps: $date = Get-Date -Format "yyyyMMddTHHmmss" $logPath = "$(LogDirectory)\${{ parameters.target }}-Build-$date.log" - $process = Start-Process -FilePath "$(EditorPath)" -ArgumentList "-quit -batchmode -projectPath `"$(System.DefaultWorkingDirectory)\$(project.name)`" -buildTarget ${{ parameters.target }} -executeMethod XRTK.Utilities.Build.UnityPlayerBuildTools.StartCommandLineBuild -logfile `"$logPath`"" -PassThru + $process = Start-Process -FilePath "$(EditorPath)" -ArgumentList "-quit -batchmode -projectPath `"$(System.DefaultWorkingDirectory)\$(project.name)`" -buildTarget ${{ parameters.target }} -executeMethod XRTK.Editor.BuildAndDeploy.UnityPlayerBuildTools.StartCommandLineBuild -logfile `"$logPath`"" -PassThru $ljob = Start-Job -ScriptBlock { param($log)