Skip to content

Commit

Permalink
make rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
vlewin committed Apr 11, 2014
1 parent 49ab4c5 commit 80351f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kitchen/Rakefile
Expand Up @@ -32,14 +32,14 @@ namespace :dotoscrc do
username = args[:username]
password = args[:password]

oscrc = File.open(File.join(ENV['HOME'], '.oscrc'), "w")
oscrc = File.open(File.join(ENV['HOME'], '.oscrc'), 'w')
oscrc.puts '[https://api.suse.de]'
oscrc.puts "user=#{username}"
oscrc.puts "pass=#{password}"
oscrc.puts 'trusted_prj=SUSE:SLE-12:GA'
oscrc.close
else
puts "ERROR: Missing required paramters [:username, :password]"
puts 'ERROR: Missing required paramters [:username, :password]'
end

end
Expand Down

0 comments on commit 80351f2

Please sign in to comment.