From da1c31c7fe561bb33ad97801d801fa3a4716df94 Mon Sep 17 00:00:00 2001
From: Meeh <meeh@i2pmail.org>
Date: Mon, 14 Jul 2014 06:19:57 +0200
Subject: [PATCH] Minor changes to travis config

---
 .travis.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index aba1e0ed..e33f9e57 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,7 @@
+# Travis file for i2pd
+# Documentation:
+# - http://docs.travis-ci.com/user/build-configuration/#The-Build-Matrix
+# - http://blog.travis-ci.com/2014-05-13-multi-os-feature-available/
 language: cpp
 compiler: gcc
 os:
@@ -6,7 +10,7 @@ os:
 branches:
   only:
     - master
-before_install:
+before_script:
   - if [[ "$os" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi # GCC 4.7
   - if [[ "$os" == "linux" ]]; then sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ quantal main universe"; fi # Boost 1.50
   - if [[ "$os" == "linux" ]]; then sudo apt-get update -qq; fi