diff options
author | JC Aguilera <juanam@microsoft.com> | 2018-03-21 09:14:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 09:14:17 -0700 |
commit | f4e81cfd664bf33eab1d4c21ed66e3cef9c9691a (patch) | |
tree | 9570d0ba0ad13f27682cd4ed86bf9342e4c4f118 | |
parent | e2ff69f7cbcfe120414ff0e3130eaa48a252ab34 (diff) | |
download | coreclr-f4e81cfd664bf33eab1d4c21ed66e3cef9c9691a.tar.gz coreclr-f4e81cfd664bf33eab1d4c21ed66e3cef9c9691a.tar.bz2 coreclr-f4e81cfd664bf33eab1d4c21ed66e3cef9c9691a.zip |
Change directory in AgentTools script
-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 +} |