File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,6 @@ EXTERNALS_DIR="$(cd "${EXTERNALS_DIR}" && pwd)"
10
10
if [ -z ${RESULTS_DIR:- } ] ; then
11
11
RESULTS_DIR=" ${HOME} /externalsMatrix"
12
12
fi
13
- if [ -e " ${RESULTS_DIR} " ] ; then
14
- RESULTS_DIR=" $( cd " ${RESULTS_DIR} " && pwd) "
15
- fi
16
13
17
14
if [ -z ${JDKS_DIR:- } ] ; then
18
15
JDKS_DIR=" ${HOME} /externalJdks"
@@ -115,8 +112,13 @@ function runExternalTest() {
115
112
popd > /dev/null
116
113
}
117
114
118
- rm -rf " ${RESULTS_DIR} "
119
- mkdir " ${RESULTS_DIR} "
115
+ function serupResultsDir() {
116
+ rm -rf " ${RESULTS_DIR} "
117
+ mkdir " ${RESULTS_DIR} "
118
+ RESULTS_DIR=" $( cd " ${RESULTS_DIR} " && pwd) "
119
+ }
120
+
121
+ serupResultsDir
120
122
checkIncludesExcludes
121
123
for jdk in $( find " ${JDKS_DIR} " -maxdepth 1 | sort -V ) ; do
122
124
if useDirIfPossible ; then continue ; fi
You can’t perform that action at this time.
0 commit comments