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 15b222b commit 154191aCopy full SHA for 154191a
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