From c3a892944676755d74e245349b99531e5a209455 Mon Sep 17 00:00:00 2001 From: Cruel Date: Thu, 6 Feb 2014 23:29:29 -0500 Subject: [PATCH] Fix travis script --- README.md | 2 +- test/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe56727..51571b8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -cpp3ds [![Build Status](https://travis-ci.org/Cruel/cpp3ds.png)](https://travis-ci.org/Cruel/cpp3ds) +cpp3ds [![Build Status](https://travis-ci.org/Cruel/cpp3ds.png?branch=master)](https://travis-ci.org/Cruel/cpp3ds) ====== Basic C++ gaming framework and library for Nintendo 3DS diff --git a/test/run.sh b/test/run.sh index 295f6de..13e1fee 100755 --- a/test/run.sh +++ b/test/run.sh @@ -1,5 +1,5 @@ echo "Compiling unit tests..." -g++ main.cpp -lgtest -std=c++11 -o test +g++ main.cpp -lgtest -o test echo "Running unit tests..." ./test -v result=$?