diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/meta | 4 |
1 files changed, 2 insertions, 2 deletions
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 |\ |