Browse Source
Fix: can't go to parent if only dir name specified
Invoking nnn with:
nnn dir
nnn ./dir
nnn dir
wouldn't allow user to navigate to parent directory.
master
Arun Prakash Jana
7 years ago
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with
5 additions and
1 deletions
-
nnn.c
|
|
@@ -952,7 +952,11 @@ main(int argc, char *argv[]) |
|
|
|
printptr = &printent; |
|
|
|
|
|
|
|
if (argv[1] != NULL) { |
|
|
|
ipath = argv[1]; |
|
|
|
ipath = realpath(argv[1], cwd); |
|
|
|
if (!ipath) { |
|
|
|
fprintf(stderr, "%s: no such dir\n", argv[1]); |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
} else { |
|
|
|
ipath = getcwd(cwd, sizeof(cwd)); |
|
|
|
if (ipath == NULL) |
|
|
|