Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: print version to stderr on startup
Unlike the rest of the normal startup output (which goes to stderr), the version number is being printed to stdout, which makes it harder to ignore all of firejail's output. Example: $ firejail --noprofile /usr/bin/true --version 2>/dev/null firejail version 0.9.73 true (GNU coreutils) 9.4 Copyright (C) 2023 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Jim Meyering. So make the normal startup version output go to stderr and keep the other occurrences (such as in `firejail --version`) going to stdout, to make it easier to grep things in the output. Added on commit f019f0e ("Print version on startup for firejail/firecfg", 2023-05-11) / PR netblue30#5829. Reported by @rusty-snake[1]. [1] netblue30#6171 (comment)
- Loading branch information