verify-bashisms: fix typo

Variable was renamed, it's now called "output".

(From OE-Core rev: c3d125b4132e5a706f6265a5bcaedafbe8e5355f)

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Patrick Ohly 2017-01-31 13:50:26 +01:00 committed by Richard Purdie
parent 5b64eda8a1
commit 15a97dea65
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def process(recipe, function, script):
# Replace the temporary filename with the function and split it
output = e.output.replace(fn.name, function).splitlines()
if len(results) % 2 != 0:
if len(output) % 2 != 0:
print("Unexpected output from checkbashism: %s" % str(output))
return