Skip to content

Commit

Permalink
Fix rubocop issues
Browse files Browse the repository at this point in the history
I don't like how the synced_folder call looks, but that makes rubocop
happy and I don't care too much about that file.
  • Loading branch information
lelutin committed Aug 23, 2024
1 parent c278e5c commit 03b6a1a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ Vagrant.configure('2') do |config|
config.librarian_puppet.destructive = false
end

config.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: ".git/",
rsync__args: ["--delete"]
config.vm.synced_folder '.',
'/vagrant',
type: 'rsync',
rsync__exclude: '.git/',
rsync__args: ['--delete']

# All boxes should update, then run tests
config.vm.provision 'shell', inline: 'apt-get update; apt-get install -y puppet-agent'
Expand Down

0 comments on commit 03b6a1a

Please sign in to comment.