class Sass::Exec::Sass
def split_colon_path(path)
def split_colon_path(path) one, two = path.split(':', 2) if one && two && ::Sass::Util.windows? && one =~ /\A[A-Za-z]\Z/ && two =~ /\A[\/\\]/ # If we're on Windows and we were passed a drive letter path, # don't split on that colon. one2, two = two.split(':', 2) one = one + ':' + one2 end return one, two end