mkvpropedit-add-fonts: Fix with spaces in filenames

This commit is contained in:
Simon Bruder 2021-05-07 21:34:35 +02:00
parent ca2136ef04
commit 7a5d16106a
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
file="$1"
shift
for attachment in $@; do
for attachment in "$@"; do
mkvpropedit --attachment-mime-type font/sfnt --add-attachment "$attachment" "$file"
done