From 14ff36a31c3bbbc001424d255b746e3e8664d82b Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Fri, 30 Oct 2015 05:23:46 +0100 Subject: [PATCH] hide the python code part from shell parsers This works around a syntax warning of the continuous integration system. The cause of this warning could have never triggered anyway. This commit encloses the whole python code safely in a "here" document. --- plugins/network/ath9k_ | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/network/ath9k_ b/plugins/network/ath9k_ index 7c20207c..405b93c2 100755 --- a/plugins/network/ath9k_ +++ b/plugins/network/ath9k_ @@ -53,6 +53,10 @@ else python3 "$0" "$@" fi exit $? + +# For shell: ignore everything starting from here until the last line of this file. +# This is necessary for syntax checkers that try to complain about invalid shell syntax below. +true <