Properly fix package type (appdmg).

This commit is contained in:
Dan Barber 2013-02-19 13:14:37 +00:00
parent 7358298a76
commit cfdc747e8a
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
# include quicksilver
class quicksilver {
package { 'Quicksilver':
provider => 'pkgdmg',
provider => 'appdmg',
source => 'http://github.qsapp.com/downloads/Quicksilver%20B71.dmg'
}
}

View File

@ -3,8 +3,8 @@ require 'spec_helper'
describe 'quicksilver' do
it do
should contain_package('Quicksilver').with({
:provider => 'pkgdmg',
:source => 'http://github.qsapp.com/downloads/Quicksilver B71.dmg',
:provider => 'appdmg',
:source => 'http://github.qsapp.com/downloads/Quicksilver%20B71.dmg',
})
end
end