Skip to content

Commit d50e886

Browse files
committed
Aded ability to enforce tmp external tarball as url
1 parent 477fb62 commit d50e886

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

run.sh

+10
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ elif [ "x$BUGID" != "x" ]; then
7272
BUGID="-bug:$BUGID"
7373
fi
7474

75+
if [ ! "x$FORCE_TMP_JTREG" == "x" ] ; then
76+
ddir=`mktemp -d`
77+
pushd "$ddir"
78+
ball=forcedJtreg.tar.gz
79+
wget "$FORCE_TMP_JTREG" -O "$ball"
80+
tar -xf "$ball"
81+
popd
82+
JTREG_HOME="$ddir/jtreg"
83+
fi
84+
7585
if [ "x$JTREG_HOME" == "x" ] ; then
7686
JTREG_HOME="$SCRIPT_DIR/jtreg"
7787
else

0 commit comments

Comments
 (0)