Use UNSET_VALUE for @args in shell config since [] is truthy.

This commit is contained in:
Eivind Uggedal 2013-03-18 12:44:26 +01:00
parent f743fed3cc
commit 41de457889
1 changed files with 2 additions and 1 deletions

View File

@ -7,13 +7,14 @@ module VagrantPlugins
attr_accessor :args
def initialize
@args = []
@args = UNSET_VALUE
@inline = UNSET_VALUE
@path = UNSET_VALUE
@upload_path = UNSET_VALUE
end
def finalize!
@args = nil if @args == UNSET_VALUE
@inline = nil if @inline == UNSET_VALUE
@path = nil if @path == UNSET_VALUE
@upload_path = "/tmp/vagrant-shell" if @upload_path == UNSET_VALUE