lib/vagrant-berkshelf/helpers.rb in vagrant-berkshelf-4.0.3 vs lib/vagrant-berkshelf/helpers.rb in vagrant-berkshelf-4.0.4
- old
+ new
@@ -43,9 +43,17 @@
if !options.fetch(:only, []).empty?
args << "--only"
args += options[:only]
end
+ if options[:freeze] == false
+ args << "--no-freeze"
+ end
+
+ if options[:force]
+ args << "--force"
+ end
+
if !options.fetch(:args, []).empty?
args += options[:args]
end
final_command = [berks_bin, command, *args]