Enable '**' support in logs collection scripts
It is disabled by default now
This commit is contained in:
parent
6c5991fadf
commit
a2a9bec8a8
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue