mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 18:21:16 -03:00
Undo "+=" thing
oh no this made no sense given that it was *prepending* to `rest`.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user