Use find instead of ls

This commit is contained in:
Ash Wilson
2019-02-06 10:14:00 -05:00
parent 5945eca148
commit 69df3439f9
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ jobs:
displayName: Run tests
condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true'))
- script: ls -R "${TEST_JUNIT_XML_PATH}"
- script: find "${TEST_JUNIT_XML_PATH}" || true
env:
TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/test-results
displayName: Dump test results

View File

@@ -49,7 +49,7 @@ jobs:
displayName: Run tests
condition: and(succeeded(), ne(variables['Atom.SkipTests'], 'true'))
- script: ls -R "${TEST_JUNIT_XML_PATH}"
- script: find "${TEST_JUNIT_XML_PATH}"
env:
TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/test-results
displayName: Dump test results