print a warning on empty script.

git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@299 9bc8b190-ac0f-0410-8968-dc7d1f502856
This commit is contained in:
Frédéric Lepied 2000-09-12 09:58:55 +00:00
parent b1d0593c76
commit 98eb47ec04
1 changed files with 5 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class PostCheck(AbstractCheck.AbstractCheck):
printWarning(pkg, "percent-in-" + tag[2])
if PostCheck.bracket_regex.search(script):
printWarning(pkg, "spurious-bracket-in-" + tag[2])
if prog == "/bin/sh" or prog == "/bin/bash":
if incorrect_shell_script(script):
printError(pkg, "shell-syntax-error-in-" + tag[2])
@ -80,7 +80,10 @@ class PostCheck(AbstractCheck.AbstractCheck):
if prog == "/usr/bin/perl":
if incorrect_perl_script(script):
printError(pkg, "perl-syntax-error-in-" + tag[2])
else:
if prog in valid_shells:
printWarning(pkg, "empty-" + tag[2])
# Create an object to enable the auto registration of the test
check=PostCheck()