fix bad flockflock url pt 2

A stray '}' character found it's way into my prior update
titled 'fix bad flockflock url' after testing. The result was
the following error

sed: -e expression #1, char 15: unexpected `}'

This removes the unwanted '}', restoring the prior update
to its intended form.

Closes-bug: 1926987
Signed-off-by: Scott Little <scott.little@windriver.com>
Change-Id: I48f4721ccaf121679916b01747243deedf5836cd
This commit is contained in:
Scott Little 2021-05-05 09:56:33 -04:00
parent 29e3bc480f
commit 7b5f3a45e6
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ merge_lst () {
# Grep to ignore empty lines or whole line comments.
# Sed to drop any trailing comments.
# Side effect of grep over cat is adding any missing EOL.
layers=$(grep -h -v -e '^$' -e '^[ \t]*#' ${layer_cfgs} | sed -e 's/[ \t]*#.*$//'} | sort --unique)
layers=$(grep -h -v -e '^$' -e '^[ \t]*#' ${layer_cfgs} | sed -e 's/[ \t]*#.*$//' | sort --unique)
layers+=" mock"
(