Skip to content

Commit 1e18d77

Browse files
committed
resolve jsaf location
1 parent c6322fd commit 1e18d77

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ ifeq ($(shell which node),)
3333
endif
3434

3535
jsaf:
36-
git clone https://github.com/daejunpark/jsaf.git
37-
( cd jsaf && \
38-
wget http://cs.nyu.edu/rgrimm/xtc/xtc.jar && mv xtc.jar bin/ )
36+
git clone https://github.com/daejunpark/jsaf-bin.git jsaf
37+
( cd jsaf/jsaf/bin && \
38+
wget http://cs.nyu.edu/rgrimm/xtc/xtc.jar )
3939

4040
test262:
4141
git clone https://github.com/tc39/test262.git

jsmassage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmd=`basename "$0"`
44
dir=`dirname "$0"`
5-
jsaf="$dir"/jsaf
5+
jsaf="$dir"/jsaf/jsaf
66

77
tmp=`mktemp -d /tmp/"$cmd".XXXXXXXXXX`
88
cleanup() { rm -rf "$tmp"; }

0 commit comments

Comments
 (0)