whoops; input needs to be enumerable

This commit is contained in:
phinze 2013-10-02 09:51:40 -05:00
parent e24a05032a
commit 04c9b19775
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Cask::Container::Dmg < Cask::Container::Base
'mount',
'-plist', '-nobrowse', '-readonly', '-noidme', '-mountrandom',
'/tmp', @path
], :plist => true, :input => 'y')
], :plist => true, :input => ['y'])
@mounts = mounts_from_plist(plist)
end