From 5fa9e5c3668bb947039146e8dc6279ce71d8d9fe Mon Sep 17 00:00:00 2001 From: shyouhei Date: Sat, 26 Nov 2011 06:41:29 +0000 Subject: [PATCH] * .travis.yml (script): should be ./configure git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33847 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- .travis.yml | 2 +- ChangeLog | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7d8e8dc335..34d728818a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ # no installation... before_script: autoconf -script: "configure && make all test" +script: "./configure && make all test" branches: only: diff --git a/ChangeLog b/ChangeLog index 95b538d648..dc81ff8e6f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Nov 26 15:40:25 2011 URABE Shyouhei + + * .travis.yml (script): should be ./configure + Sat Nov 26 15:39:18 2011 URABE Shyouhei * .travis.yml (before_script): wrong name, sorry.