Sha256: cc5b3ce71c39d811112091a6869a22f58bea0636584ff91d103c53129a828315
Contents?: true
Size: 399 Bytes
Versions: 2
Compression:
Stored size: 399 Bytes
Contents
module VagrantWindows module Communication module CommandFilters # Converts a *nix 'chmod' command to a PowerShell equivalent class Chmod def filter(command) # Not support on Windows, the communicator will skip this command '' end def accept?(command) command.start_with?('chmod ') end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-windows-1.7.0.pre.2 | lib/vagrant-windows/communication/command_filters/chmod.rb |
vagrant-windows-1.7.0.pre.1 | lib/vagrant-windows/communication/command_filters/chmod.rb |