diff options
-rw-r--r-- | buildpipeline/tests/Dotnet-CoreClr-Trusted-BuildTests.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildpipeline/tests/Dotnet-CoreClr-Trusted-BuildTests.json b/buildpipeline/tests/Dotnet-CoreClr-Trusted-BuildTests.json index 5255c56e42..226734985b 100644 --- a/buildpipeline/tests/Dotnet-CoreClr-Trusted-BuildTests.json +++ b/buildpipeline/tests/Dotnet-CoreClr-Trusted-BuildTests.json @@ -17,7 +17,7 @@ "targetType": "inline", "filePath": "", "arguments": "", - "script": "if (Test-Path \"$(AgentToolsPath)\\Begin.ps1\") {\n \"Begin.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\Begin.ps1\n} else {\n \"Begin.ps1 script does not exist. Moving on...\"\n}", + "script": "if (Test-Path \"$(AgentToolsPath)\\Begin.ps1\") {\n \"Begin.ps1 script found. Executing...\"\n cd $(AgentToolsPath)\n & $(AgentToolsPath)\\Begin.ps1\n} else {\n \"Begin.ps1 script does not exist. Moving on...\"\n}", "errorActionPreference": "continue", "failOnStderr": "false", "ignoreLASTEXITCODE": "true", @@ -214,7 +214,7 @@ "targetType": "inline", "filePath": "", "arguments": "", - "script": "if (Test-Path \"$(AgentToolsPath)\\End.ps1\") {\n \"End.ps1 script found. Executing...\"\n & $(AgentToolsPath)\\End.ps1\n} else {\n \"End.ps1 script does not exist. Moving on...\"\n}", + "script": "if (Test-Path \"$(AgentToolsPath)\\End.ps1\") {\n \"End.ps1 script found. Executing...\"\n cd $(AgentToolsPath)\n & $(AgentToolsPath)\\End.ps1\n} else {\n \"End.ps1 script does not exist. Moving on...\"\n}", "errorActionPreference": "continue", "failOnStderr": "false", "ignoreLASTEXITCODE": "true", @@ -423,4 +423,4 @@ "revision": 418098432, "visibility": "organization" } -}
\ No newline at end of file +} |