We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very often || die is missing behind echo to files or sed
|| die
echo
sed
For example: echo '#!/bin/true' >share/genbuild.sh should be echo '#!/bin/true' >share/genbuild.sh || die
echo '#!/bin/true' >share/genbuild.sh
echo '#!/bin/true' >share/genbuild.sh || die
I think this will be part of a group of tests, which will never be 100% accurate, but remembers the maintainer to double check the line manually.
The following line lists all ebuilds with no die behind echo, while it is likely written to files there qgrep -Nx "echo .* > " | grep -v die
qgrep -Nx "echo .* > " | grep -v die
Should we have a category suspicious for tests which will likely contain many false positives but are worth a verification?
suspicious
We need the test for
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Very often
|| die
is missing behindecho
to files orsed
For example:
echo '#!/bin/true' >share/genbuild.sh
should be
echo '#!/bin/true' >share/genbuild.sh || die
I think this will be part of a group of tests, which will never be 100% accurate, but remembers the maintainer to double check the line manually.
The following line lists all ebuilds with no die behind echo, while it is likely written to files there
qgrep -Nx "echo .* > " | grep -v die
Should we have a category
suspicious
for tests which will likely contain many false positives but are worth a verification?We need the test for
The text was updated successfully, but these errors were encountered: