I'm interested in trying out Buildr for a new project. Unfortunately I ran into a weird error right away.
I installed Buildr 1.3.4 on my Mac (OS X 10.5) using the build script provided on their "Getting Started" page. I created a directory foo, and from that directory I ran the command buildr, which I think is supposed to create a buildfile. I got the following output:
[jay@rhyolite]$ mkdir foo
[jay@rhyolite]$ cd foo
[jay@rhyolite]$ buildr
To use Buildr you need a buildfile. Do you want me to create one?:
1. From directory structure
2. Cancel
? 1
Created /Users/jay/Code/foo/buildfile
(in /Users/jay/Code/foo, development)
Downloading org.apache.ant:ant:jar:1.7.1
Downloading http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/ant/ant/1.7.1/ant-1.7.1.jar
negative argument
Buildr aborted!
[31mFailed to download org.apache.ant:ant:jar:1.7.1, tried the following repositories:
http://www.ibiblio.org/maven2//[0m
(See full trace by running task with --trace)
I have Ant 1.7.0 installed, so I guess it wants a more recent version. However, the URL it provides seems to work fine, and I was able to download ant-1.7.1.jar with my browser. I don't know what "negative argument" means or why it aborts. It does actually create a buildfile, but I get the same error message when I run it again.
So what's going on? Is this a common problem? Am I making some newbie mistake? Is there an easy fix?
