summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-26 06:41:29 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-26 06:41:29 +0000
commit5fa9e5c3668bb947039146e8dc6279ce71d8d9fe (patch)
treed30e7548be821bfc149a0915368a477c7b4e757e
parent474635843b840e508841278fc65d5979bcc52bc2 (diff)
* .travis.yml (script): should be ./configure
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33847 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--.travis.yml2
-rw-r--r--ChangeLog4
2 files changed, 5 insertions, 1 deletions
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 <shyouhei@ruby-lang.org>
+
+ * .travis.yml (script): should be ./configure
+
Sat Nov 26 15:39:18 2011 URABE Shyouhei <shyouhei@ruby-lang.org>
* .travis.yml (before_script): wrong name, sorry.