- Some applications do not line warnings or notices on stderr

as they use it for other things. So make nodejs-common quiet
  unless we have a fatal error.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-common?expand=0&rev=48
This commit is contained in:
Adam Majer 2021-06-18 19:31:35 +00:00 committed by Git OBS Bridge
parent da73788f4a
commit 55c98f5666
2 changed files with 9 additions and 1 deletions

3
node.c
View File

@ -73,7 +73,8 @@ int main(int argc, char *argv[])
// should not return, and if it does, it probably means
// we should fall back to using node-default fallback.
libalts_exec_default(argv);
fputs("Falling back to using -default symlink.\n", stderr);
// some programs parse stderr, so let's be quiet here.
//fputs("Falling back to using -default symlink.\n", stderr);
}
#endif

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Jun 18 19:29:10 UTC 2021 - Adam Majer <adam.majer@suse.de>
- Some applications do not line warnings or notices on stderr
as they use it for other things. So make nodejs-common quiet
unless we have a fatal error.
-------------------------------------------------------------------
Thu Jun 10 10:27:58 UTC 2021 - Adam Majer <adam.majer@suse.de>