var checkTravis = function(userInput, url) {
    if (hasTrueInput(userInput, 'travis')) {
      var travisLine = util.format('[![Build Status](https://travis-ci.org/%s.svg?branch=master)](https://travis-ci.org/%s)', url, url);
      readmeArray.splice(2, 0, travisLine);
      written = true;