Skip to content

Commit

Permalink
Make prerelease detection more robust
Browse files Browse the repository at this point in the history
Change-Id: Idbe8d16e2d313f2d452dc55ab0b16b435f84a09c
  • Loading branch information
kamaradclimber committed Jul 11, 2017
1 parent 4c77ad9 commit fbd383f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chef-vault.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $:.push File.expand_path("../lib", __FILE__)
require "chef-vault/version"

def self.prerelease?
!ENV["TRAVIS_TAG"]
!ENV["TRAVIS_TAG"] || ENV["TRAVIS_TAG"].empty?
end

Gem::Specification.new do |s|
Expand Down

0 comments on commit fbd383f

Please sign in to comment.