You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2009/03/13 00:35:27 UTC

svn commit: r753056 - in /buildr/trunk: CHANGELOG doc/scripts/install-jruby.sh

Author: assaf
Date: Thu Mar 12 23:35:27 2009
New Revision: 753056

URL: http://svn.apache.org/viewvc?rev=753056&view=rev
Log:
Fixed:  BUILDR-235 JRuby download link is broke (Alexis Midon).

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/doc/scripts/install-jruby.sh

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=753056&r1=753055&r2=753056&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Thu Mar 12 23:35:27 2009
@@ -40,6 +40,7 @@
 * Fixed:  BUILDR-201 Sample project is not valid (Alexis Midon).
 * Fixed:  BUILDR-214 Buildr is stuck uploading to sftp repository (Heikki Hulkko).
 * Fixed:  BUILDR-216 Profiles documentation is wrong (Shane Witbeck).
+* Fixed:  BUILDR-235 JRuby download link is broke (Alexis Midon).
 * Fixed:  BUILDR-253 ZipTask now uses Zlib::DEFAULT_COMPRESSION instead of NO_COMPRESSION
 * Fixed:  BUILDR-261 ScalaSpecs should be run with Scala dependencies
 * Fixed:  BUILDR-263 package(:war).merge not working correctly with exclude()

Modified: buildr/trunk/doc/scripts/install-jruby.sh
URL: http://svn.apache.org/viewvc/buildr/trunk/doc/scripts/install-jruby.sh?rev=753056&r1=753055&r2=753056&view=diff
==============================================================================
--- buildr/trunk/doc/scripts/install-jruby.sh (original)
+++ buildr/trunk/doc/scripts/install-jruby.sh Thu Mar 12 23:35:27 2009
@@ -18,7 +18,7 @@
   target=/opt/jruby
   echo "Installing JRuby ${version} in ${target}"
   sudo mkdir -p $(dirname ${target})
-  wget http://dist.codehaus.org/jruby/jruby-bin-${version}.tar.gz
+  wget http://dist.codehaus.org/jruby/${version}/jruby-bin-${version}.tar.gz
   tar -xz < jruby-bin-${version}.tar.gz
   sudo mv jruby-${version} ${target}
   rm jruby-bin-${version}.tar.gz