mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 06:13:20 +00:00
Undo "+=" thing
oh no this made no sense given that it was *prepending* to `rest`.
This commit is contained in:
parent
00949fccda
commit
8e38ee884f
1 changed files with 1 additions and 3 deletions
|
@ -691,9 +691,7 @@ static int path_resolve(parser_t &parser, io_streams_t &streams, int argc, const
|
|||
real = normalize_path(*real, false);
|
||||
break;
|
||||
}
|
||||
rest = wbasename(next);
|
||||
rest += L'/';
|
||||
rest += rest;
|
||||
rest = wbasename(next) + L'/' + rest;
|
||||
}
|
||||
if (!real) {
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue