mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Do not open current dir in nez context when extracting archive
This commit is contained in:
parent
96cbb4ff84
commit
e8f0c53287
16
src/nnn.c
16
src/nnn.c
|
@ -4291,14 +4291,16 @@ static bool handle_archive(char *fpath /* in-out param */, char op)
|
|||
printwait(messages[MSG_CANCEL], NULL);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!xmktree(outdir, TRUE) || (chdir(outdir) == -1)) {
|
||||
printwarn(NULL);
|
||||
return FALSE;
|
||||
/* Do not create smart context for current dir */
|
||||
if (!(*outdir == '.' && outdir[1] == '\0')) {
|
||||
if (!xmktree(outdir, TRUE) || (chdir(outdir) == -1)) {
|
||||
printwarn(NULL);
|
||||
return FALSE;
|
||||
}
|
||||
/* Copy the new dir path to open it in smart context */
|
||||
outdir = realpath(".", NULL);
|
||||
x_to = TRUE;
|
||||
}
|
||||
/* Copy the new dir path to open it in smart context */
|
||||
outdir = realpath(".", NULL);
|
||||
x_to = TRUE;
|
||||
}
|
||||
|
||||
if (getutil(utils[UTIL_ATOOL])) {
|
||||
|
|
Loading…
Reference in a new issue