We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e262c6 commit e761a9fCopy full SHA for e761a9f
src/libexpr/parser.y
@@ -384,7 +384,7 @@ path_start
384
std::string_view($1.p, $1.l)
385
);
386
}
387
- Path path(getHome() + std::string($1.p + 1, $1.l - 1));
+ Path path(getHome().string() + std::string($1.p + 1, $1.l - 1));
388
$$ = state->exprs.add<ExprPath>(state->exprs.alloc, ref<SourceAccessor>(state->rootFS), path);
389
390
;
0 commit comments