mkvpropedit-add-fonts: Fix with spaces in filenames

pull/52/head
Simon Bruder 2021-05-07 21:34:35 +02:00
parent ca2136ef04
commit 7a5d16106a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

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