Method: AsProject::AbstractRemoteFileTask#clean_path

Defined in:
lib/tasks/remote_file_task.rb

#clean_path(path) ⇒ Object



153
154
155
156
157
158
# File 'lib/tasks/remote_file_task.rb', line 153

def clean_path(path)
  if(path.index(' '))
    return %{'#{path}'}
  end
  return path
end