We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-
1 parent 6bbed12 commit b679185Copy full SHA for b679185
src/logo/logo.c
@@ -473,6 +473,9 @@ static void updateLogoPath(void)
473
if(ffPathExists(options->source.chars, FF_PATHTYPE_FILE))
474
return;
475
476
+ if (ffStrbufEqualS(&options->source, "-")) // stdin
477
+ return;
478
+
479
FF_STRBUF_AUTO_DESTROY fullPath = ffStrbufCreate();
480
if (ffPathExpandEnv(options->source.chars, &fullPath) && ffPathExists(fullPath.chars, FF_PATHTYPE_FILE))
481
{
0 commit comments