summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/verify-bashisms2
1 files changed, 1 insertions, 1 deletions
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):
41 41
42 # Replace the temporary filename with the function and split it 42 # Replace the temporary filename with the function and split it
43 output = e.output.replace(fn.name, function).splitlines() 43 output = e.output.replace(fn.name, function).splitlines()
44 if len(results) % 2 != 0: 44 if len(output) % 2 != 0:
45 print("Unexpected output from checkbashism: %s" % str(output)) 45 print("Unexpected output from checkbashism: %s" % str(output))
46 return 46 return
47 47