Skip to content

Commit

Permalink
Fix version and order of kitchen builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley committed Oct 25, 2016
1 parent 41ecefa commit 9bff81b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Dir.chdir('omnibus') do
CLOBBER << '.kitchen'
end

omnibus_platforms = [:windows, :macos]
omnibus_platforms = [:macos, :windows]

desc 'Build omnibus packages'
task omnibus: omnibus_platforms.map { |platform| "omnibus:#{platform}" }
Expand Down
2 changes: 1 addition & 1 deletion omnibus/config/software/workup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
build do
env = with_standard_compiler_flags(with_embedded_path)

gem 'install pkg/workup-0.1.1.gem', env: env
gem 'install pkg/workup-0.1.2.gem', env: env

block do
open("#{install_dir}/bin/workup.bat", "w") do |file|
Expand Down
2 changes: 1 addition & 1 deletion spec/workup/helpers_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

describe Workup::Helpers do
it 'checks the user' do
expect { Workup::Helpers.check_user! }.not_to raise_error
expect { Workup::Helpers.check_user }.not_to raise_error
end
end

0 comments on commit 9bff81b

Please sign in to comment.