Skip to content

Commit 5022c24

Browse files
Fix plugins (#859)
* fix: frozen string modification error * chore: bump version
1 parent 956b88a commit 5022c24

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2007,7 +2007,7 @@ If you do not have write access to the system gem directory, you'll need to perf
20072007
Now make sure everything is working:
20082008
20092009
$ travis version
2010-
1.13.2
2010+
1.13.3
20112011
20122012
See also [Note on Ubuntu](#ubuntu) below.
20132013

bin/travis

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ require 'bundler/setup' if File.exist? File.expand_path('../Gemfile', __dir__)
99
require 'travis/cli'
1010

1111
# load plugins
12-
TRAVIS_PLUGINS = [].freeze
12+
TRAVIS_PLUGINS = []
1313
config_path = ENV.fetch('TRAVIS_CONFIG_PATH') { File.expand_path('.travis', Dir.home) }
1414
Dir.glob(File.expand_path('*/init.rb', config_path)) do |file|
1515
TRAVIS_PLUGINS << file.sub("#{config_path}/", '').sub(%r{/init\.rb$}, '')
1616
load(file)
1717
end
18+
TRAVIS_PLUGINS.freeze
1819

1920
# and off we go then
2021
Travis::CLI.run(ARGV)

lib/travis/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Travis
4-
VERSION = '1.13.2'
4+
VERSION = '1.13.3'
55
end

0 commit comments

Comments
 (0)