diff --git a/README.md b/README.md index 2c5a39e1..d0cdec10 100644 --- a/README.md +++ b/README.md @@ -2007,7 +2007,7 @@ If you do not have write access to the system gem directory, you'll need to perf Now make sure everything is working: $ travis version - 1.13.2 + 1.13.3 See also [Note on Ubuntu](#ubuntu) below. diff --git a/bin/travis b/bin/travis index ab262466..9f591bd1 100755 --- a/bin/travis +++ b/bin/travis @@ -9,12 +9,13 @@ require 'bundler/setup' if File.exist? File.expand_path('../Gemfile', __dir__) require 'travis/cli' # load plugins -TRAVIS_PLUGINS = [].freeze +TRAVIS_PLUGINS = [] config_path = ENV.fetch('TRAVIS_CONFIG_PATH') { File.expand_path('.travis', Dir.home) } Dir.glob(File.expand_path('*/init.rb', config_path)) do |file| TRAVIS_PLUGINS << file.sub("#{config_path}/", '').sub(%r{/init\.rb$}, '') load(file) end +TRAVIS_PLUGINS.freeze # and off we go then Travis::CLI.run(ARGV) diff --git a/lib/travis/version.rb b/lib/travis/version.rb index 689beff0..8ea21cf6 100644 --- a/lib/travis/version.rb +++ b/lib/travis/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Travis - VERSION = '1.13.2' + VERSION = '1.13.3' end