From 766cb1ea97d54d40399ae7d1257b1a7504e718fd Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 12 Apr 2021 13:18:39 +0200 Subject: bash -> posix sh --- scripts/meta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/meta b/scripts/meta index e869d0b..f7a3f84 100755 --- a/scripts/meta +++ b/scripts/meta @@ -5,13 +5,13 @@ filename=$2 output=$(grep -Poh "^\[meta\]:\s+<$tag_name>\s+\(\K(.+)(?=\)$)" $filename) -if [[ $tag_name = "tags" ]]; then +if [ "$tag_name" = "tags" ]; then echo $output |\ sed "s/,\s*/\n/g" |\ sed -z '$ s/\n$//' |\ jq --raw-input --slurp 'split("\n")' else - if [[ $output = "" ]]; then + if [ "$output" = "" ]; then echo "" | jq --raw-input else echo $output |\ -- cgit v1.2.3