improve style (SC2086)

Signed-off-by: Marek Küthe <m.k@mk16.de>
This commit is contained in:
Marek Küthe 2023-01-07 20:08:27 +01:00
parent 0fad0b9215
commit 475d164fab
No known key found for this signature in database
GPG Key ID: 7E869146699108C7
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ if ! jq --version &> /dev/null; then
exit 1
fi
if [ ! $1 ]; then
if [ ! "$1" ]; then
echo "Please specify format: [bird|babeld]"
exit 1
fi
@ -38,4 +38,4 @@ elif [ "$1" == "babeld" ]; then
fi
echo -e $filter
echo -e "$filter"