1
1
mirror of https://github.com/jarun/nnn.git synced 2024-11-11 14:44:20 +03:00

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.
This commit is contained in:
Arun Prakash Jana 2017-03-31 01:34:41 +05:30
parent 8775a52779
commit 86c3f75512
No known key found for this signature in database
GPG Key ID: A75979F35C080412

6
nnn.c
View File

@ -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)