From: Patrick Ohly Date: Tue, 31 Jan 2017 12:50:26 +0000 (+0100) Subject: verify-bashisms: fix typo X-Git-Tag: uninative-1.5~504 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c3d125b4132e5a706f6265a5bcaedafbe8e5355f;p=openembedded-core.git verify-bashisms: fix typo Variable was renamed, it's now called "output". Signed-off-by: Patrick Ohly Signed-off-by: Richard Purdie --- diff --git a/scripts/verify-bashisms b/scripts/verify-bashisms index a8f761d4c5..1bda60cbd9 100755 --- a/scripts/verify-bashisms +++ b/scripts/verify-bashisms @@ -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