Function getPath2 [src]
Deprecated, see getPath3.
Prototype
pub fn getPath2(lazy_path: LazyPath, src_builder: *Build, asking_step: ?*Step) []const u8
Parameters
lazy_path: LazyPath
src_builder: *Build
asking_step: ?*Step
Source
pub fn getPath2(lazy_path: LazyPath, src_builder: *Build, asking_step: ?*Step) []const u8 {
const p = getPath3(lazy_path, src_builder, asking_step);
return src_builder.pathResolve(&.{ p.root_dir.path orelse ".", p.sub_path });
}