From: Patrick Ohly Date: Tue, 31 Jan 2017 12:50:28 +0000 (+0100) Subject: verify-bashisms: explicitly shut down server X-Git-Tag: yocto-4.0~18243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62f42ce063115f4a02c219e323252223818a150f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git verify-bashisms: explicitly shut down server Current tinfoil2 requires manually shutting down the server. Without that, the script hangs during exit. This might change in the future. Signed-off-by: Patrick Ohly Signed-off-by: Richard Purdie --- diff --git a/scripts/verify-bashisms b/scripts/verify-bashisms index 28795f4cc70..ed0a5631d08 100755 --- a/scripts/verify-bashisms +++ b/scripts/verify-bashisms @@ -114,3 +114,4 @@ if __name__=='__main__': for message,source in results: print(" %s\n %s" % (message, source)) print() + tinfoil.shutdown()