Skip to content

Commit

Permalink
fix: mkvpropedit for v70.0 is fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveO16176 committed Oct 30, 2024
1 parent 86bf361 commit 3797b11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [ -f /usr/bin/apt ]; then
PACKAGES = "mkvtoolnix mkvtoolnix-gui"
else
// Check to see if mkvpropedit is installed or if mkvpropedit installed and check to see if version 70.0 is installed.
if [[ ! -f /usr/bin/mkvpropedit || mkvpropedit --version | grep -q "70.0" ]]; then
if [ ! -f /usr/bin/mkvpropedit ] || mkvpropedit --version | grep -vq "70.0"; then

echo "**** Add version 70.0 of MKVToolNIX to package list. ****"

Expand Down

0 comments on commit 3797b11

Please sign in to comment.