From 03b6a1ab92361e1d1c71512cd23be32905a18c41 Mon Sep 17 00:00:00 2001 From: Gabriel Filion Date: Fri, 23 Aug 2024 18:41:34 -0400 Subject: [PATCH] Fix rubocop issues 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. --- Vagrantfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index d372305..5f734e8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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'