Append a new empty line to features' local template file when setting up AGL 07/21707/2
authorBechir Mghirbi <bechir.mghirbi@grammer.com>
Mon, 24 Jun 2019 08:53:05 +0000 (10:53 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 26 Jun 2019 11:27:54 +0000 (11:27 +0000)
A missing empty line at the end of a feature's local template
file will lead to a ParseError error.

This patchset will automatically append a new line
at the end of the feature's local template file when
setting up AGL.

Bug-AGL: SPEC-2563
Signed-off-by: Bechir Mghirbi <bechir.mghirbi@grammer.com>
Change-Id: Ica9decdb0bda182de7e25ace4fca6a9f6f7db5ff

scripts/.aglsetup_genconfig.bash

index 1e8d4b6..6e091e2 100755 (executable)
@@ -215,6 +215,7 @@ function append_fragment() {
        echo "#" >>$basefile
        [[ -n "$label" ]] && echo "$label" >>$basefile
        [[ -f $f ]] && cat $f >>$basefile || true
+       echo "" >>$basefile
        echo "#" >>$basefile
        echo "# }" >>$basefile
        echo "# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #" >>$basefile