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)"
1010if [ -z ${RESULTS_DIR:- } ] ; then
1111 RESULTS_DIR=" ${HOME} /externalsMatrix"
1212fi
13- if [ -e " ${RESULTS_DIR} " ] ; then
14- RESULTS_DIR=" $( cd " ${RESULTS_DIR} " && pwd) "
15- fi
1613
1714if [ -z ${JDKS_DIR:- } ] ; then
1815 JDKS_DIR=" ${HOME} /externalJdks"
@@ -115,8 +112,13 @@ function runExternalTest() {
115112 popd > /dev/null
116113}
117114
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
120122checkIncludesExcludes
121123for jdk in $( find " ${JDKS_DIR} " -maxdepth 1 | sort -V ) ; do
122124 if useDirIfPossible ; then continue ; fi
You can’t perform that action at this time.
0 commit comments