pub fn resolve_project_path(
storage: &SqliteStorage,
explicit: Option<&str>,
) -> Result<String>Expand description
Resolve the project path from explicit input or CWD.
Convenience wrapper around resolve_project that returns just the path string.
Use this in commands that need a project path but don’t need the full Project object.
§Errors
Same as resolve_project.