mirror of
https://github.com/jarun/nnn.git
synced 2025-02-04 15:30:36 +00:00
Fix #223
This commit is contained in:
parent
2849da93e7
commit
f9036bd959
|
@ -1187,8 +1187,9 @@ static void xrm(char *path)
|
||||||
if (cfg.trash)
|
if (cfg.trash)
|
||||||
spawn("trash-put", path, NULL, NULL, F_NORMAL);
|
spawn("trash-put", path, NULL, NULL, F_NORMAL);
|
||||||
else {
|
else {
|
||||||
char rm_opts[] = {'-', confirm_force(), 'r'};
|
char rm_opts[] = "-ir";
|
||||||
|
|
||||||
|
rm_opts[1] = confirm_force();
|
||||||
spawn("rm", rm_opts, path, NULL, F_NORMAL);
|
spawn("rm", rm_opts, path, NULL, F_NORMAL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue