Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
Disable apt-lists bucket for windows hosts
Browse files Browse the repository at this point in the history
Fixes GH-106
  • Loading branch information
fgrehm committed Jul 21, 2014
1 parent 2b6a07d commit 1a1b108
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/vagrant-cachier/bucket/apt_lists.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ def self.capability
end

def install
# Apt lists bucket can't be used on windows hosts
# https://github.com/fgrehm/vagrant-cachier/issues/106
return if Vagrant::Util::Platform.windows?

if guest.capability?(:apt_lists_dir)
guest_path = guest.capability(:apt_lists_dir)

Expand Down

0 comments on commit 1a1b108

Please sign in to comment.