From 01b904061d8da1cddc7b6da1bb26759153fea295 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Thu, 8 Mar 2018 16:00:51 -0800 Subject: [PATCH] Use proper command reference for command whitelist params --- plugins/kernel_v2/config/trigger.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/kernel_v2/config/trigger.rb b/plugins/kernel_v2/config/trigger.rb index acf779644..f83323e6f 100644 --- a/plugins/kernel_v2/config/trigger.rb +++ b/plugins/kernel_v2/config/trigger.rb @@ -63,12 +63,12 @@ module VagrantPlugins # @param [Array, Symbol] command Vagrant command to create trigger on # @param [Block] block The defined after block - def before(**command, &block) + def before(*command, &block) end # @param [Array, Symbol] command Vagrant command to create trigger on # @param [Block] block The defined after block - def after(**command, &block) + def after(*command, &block) end # @param [Array, Symbol] command Vagrant command to create trigger on