mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix #168
This commit is contained in:
parent
5548990b8f
commit
9eec60f8b1
12
src/nnn.c
12
src/nnn.c
|
@ -3548,12 +3548,6 @@ int main(int argc, char *argv[])
|
|||
char *ipath = NULL;
|
||||
int opt;
|
||||
|
||||
/* Confirm we are in a terminal */
|
||||
if (!isatty(0) || !isatty(1)) {
|
||||
fprintf(stderr, "stdin or stdout is not a tty\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
while ((opt = getopt(argc, argv, "Slib:Cep:vh")) != -1) {
|
||||
switch (opt) {
|
||||
case 'S':
|
||||
|
@ -3602,6 +3596,12 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
/* Confirm we are in a terminal */
|
||||
if (!isatty(0) || !isatty(1)) {
|
||||
fprintf(stderr, "stdin or stdout is not a tty\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Get the context colors; copier used as tmp var */
|
||||
if (cfg.showcolor) {
|
||||
copier = getenv("NNN_CONTEXT_COLORS");
|
||||
|
|
Loading…
Reference in a new issue