Skip to content

Commit

Permalink
fix: linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkProminic committed Jan 9, 2024
1 parent ce961e3 commit d2e23b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/vagrant-zones/action/package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def call(env)
kernel = @machine.provider_config.kernel
vcc = @machine.provider_config.vagrant_cloud_creator
boxshortname = @machine.provider_config.boxshortname
vagrant_cloud_creator = @machine.provider_config.vagrant_cloud_creator
vagrant_cloud_creator = @machine.provider_config.vagrant_cloud_creator
files = {}
raise "#{boxname}: Already exists" if File.exist?(boxname)

Expand Down Expand Up @@ -89,9 +89,9 @@ def call(env)
files[env['package.vagrantfile']] = '_Vagrantfile' if env['package.vagrantfile']

info_content_hash = {
'boxname' => "#{boxshortname}",
'Author' => "#{vagrant_cloud_creator}",
'Vagrant-Zones' => "This box was built with Vagrant-Zones: https://github.com/STARTcloud/vagrant-zones"
'boxname' => boxshortname,
'Author' => vagrant_cloud_creator,
'Vagrant-Zones' => 'This box was built with Vagrant-Zones: https://github.com/STARTcloud/vagrant-zones'
}
File.write("#{Dir.pwd}/_tmp_package/info.json", info_content_hash.to_json)

Expand Down

0 comments on commit d2e23b4

Please sign in to comment.