Merge pull request #875 from DataDog/mar-kolya/fix-artifacts-collection

Enable '**' support in logs collection scripts
This commit is contained in:
Nikolay Martynov 2019-06-13 11:18:58 -04:00 committed by GitHub
commit fc30badbee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,8 @@
# This folder will be saved by circleci and available after test runs.
set -e
#Enable '**' support
shopt -s globstar
REPORTS_DIR=./reports
mkdir -p $REPORTS_DIR >/dev/null 2>&1

View File

@ -4,6 +4,8 @@
# This folder will be saved by circleci and available after test runs.
set -e
#Enable '**' support
shopt -s globstar
TEST_RESULTS_DIR=./results
mkdir -p $TEST_RESULTS_DIR >/dev/null 2>&1