Skip to content

Commit

Permalink
Update bootstrap to get the current version of Rhino.
Browse files Browse the repository at this point in the history
  • Loading branch information
brentonashworth committed Sep 28, 2011
1 parent 418146c commit e47eafd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ echo "Building lib/goog.jar..."
echo "jar cf ./lib/goog.jar -C closure/library/closure/ goog"
jar cf ./lib/goog.jar -C closure/library/closure/ goog

echo "Fetching Rhino..."
curl -O -s ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3.zip
unzip -qu rhino1_7R3.zip
echo "Copying rhino1_7R3/js.jar to lib/js.jar..."
cp rhino1_7R3/js.jar lib/js.jar
echo "Cleaning up Rhino directory..."
rm -rf rhino1_7R3/
echo "Cleaning up Rhino archive..."
rm rhino1_7R3.zip

echo "Copying closure/compiler/compiler.jar to lib/compiler.jar"
cp closure/compiler/compiler.jar lib

Expand Down

0 comments on commit e47eafd

Please sign in to comment.