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 bc66f9b commit 547d81d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions lib/vagrant-zones/action/package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,13 @@ def call(env)
## Create the Metadata and Vagrantfile
Dir.chdir(tmp_dir)

metadata_content_hash = {
"provider" => "zone",
"architecture" => "amd64",
"brand" => brand,
"format" => "zss",
"url" => "https://app.vagrantup.com/#{vcc}/boxes/#{boxshortname}"
metadata_content_hash = {
'provider' => 'zone',
'architecture' => 'amd64',
'brand' => brand,
'format' => 'zss',
'kernel' => kernel,
'url' => 'https://app.vagrantup.com/#{vcc}/boxes/#{boxshortname}'
}

File.write('./metadata.json', metadata_content_hash)
Expand Down

0 comments on commit 547d81d

Please sign in to comment.