Method: AsProject::Project#resolve_location

Defined in:
lib/project.rb

#resolve_location(loc) ⇒ Object



75
76
77
78
79
80
# File 'lib/project.rb', line 75

def resolve_location(loc)
  if(!loc.index(@execution_dir))
    return File.join(@execution_dir, loc)
  end
  return loc
end