mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-19 08:24:00 +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);
|
real = normalize_path(*real, false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
rest = wbasename(next);
|
rest = wbasename(next) + L'/' + rest;
|
||||||
rest += L'/';
|
|
||||||
rest += rest;
|
|
||||||
}
|
}
|
||||||
if (!real) {
|
if (!real) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue