Skip to content

Commit 1e3c435

Browse files
azure-sdkscbedd
andauthored
simplify the commit history so that the patch can apply properly (Azure#25360)
Co-authored-by: scbedd <[email protected]>
1 parent e2f40fe commit 1e3c435

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/common/testproxy/test-proxy-tool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ steps:
2222
- pwsh: |
2323
Start-Process $(Build.BinariesDirectory)/test-proxy/test-proxy.exe `
2424
-ArgumentList "--storage-location '${{ parameters.rootFolder }}'" `
25-
-NoNewWindow -PassThru
25+
-NoNewWindow -PassThru -RedirectStandardOutput $(Build.SourcesDirectory)/test-proxy.log
2626
displayName: 'Run the testproxy - windows'
2727
condition: and(succeeded(), eq(variables['Agent.OS'],'Windows_NT'))
2828
2929
# nohup does NOT continue beyond the current session if you use it within powershell
3030
- bash: |
31-
nohup $(Build.BinariesDirectory)/test-proxy/test-proxy &
31+
nohup $(Build.BinariesDirectory)/test-proxy/test-proxy > $(Build.SourcesDirectory)/test-proxy.log &
3232
displayName: "Run the testproxy - linux/mac"
3333
condition: and(succeeded(), ne(variables['Agent.OS'],'Windows_NT'))
3434
workingDirectory: "${{ parameters.rootFolder }}"

0 commit comments

Comments
 (0)