Method: RakeCompilerDock::Starter.sanitize_windows_path

Defined in:
lib/rake_compiler_dock/starter.rb

.sanitize_windows_path(path) ⇒ Object

Change Path from “C:Path” to “/c/Path” as used by boot2docker



165
166
167
# File 'lib/rake_compiler_dock/starter.rb', line 165

def sanitize_windows_path(path)
  path.gsub(/^([a-z]):/i){ "/#{$1.downcase}" }
end