Enable '**' support in logs collection scripts

It is disabled by default now
This commit is contained in:
Nikolay Martynov 2019-06-13 10:47:24 -04:00
parent 6c5991fadf
commit a2a9bec8a8
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