Skip to content

Commit b8a14ee

Browse files
anmonteirodnolen
authored and
dnolen
committed
CLJS-1756: Add test.check JAR to the bootstrap script
1 parent 2a74548 commit b8a14ee

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

script/bootstrap

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ TRANSIT_RELEASE="0.8.285"
99
GCLOSURE_LIB_RELEASE="0.0-20160609-f42b4a24"
1010
RHINO_RELEASE="1_7R5"
1111
TREADER_RELEASE="1.0.0-beta3"
12+
TEST_CHECK_RELEASE="0.9.0"
1213

1314
# check dependencies
1415
curl -V >/dev/null || { echo "cURL is missing, or not on your system path."; exit 1; }
@@ -105,4 +106,10 @@ curl --retry 3 -O -s https://repo1.maven.org/maven2/org/clojure/tools.reader/$TR
105106
echo "Moving tools.reader.jar to lib/tools.reader.jar"
106107
mv tools.reader-$TREADER_RELEASE.jar lib/tools.reader-$TREADER_RELEASE.jar
107108

109+
echo "Fetching test.check $TEST_CHECK_RELEASE ..."
110+
curl --retry 3 -O -s https://repo1.maven.org/maven2/org/clojure/test.check/$TEST_CHECK_RELEASE/test.check-$TEST_CHECK_RELEASE.jar || { echo "Download failed."; exit 1; }
111+
112+
echo "Moving test.check.jar to lib/test.check.jar"
113+
mv test.check-$TEST_CHECK_RELEASE.jar lib/test.check.jar
114+
108115
echo "[Bootstrap Completed]"

0 commit comments

Comments
 (0)