Skip to content

Commit

Permalink
refactor: simplify checks for mkvpropedit v70.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveO16176 committed Nov 2, 2024
1 parent 8821c33 commit b1fc1c9
Showing 1 changed file with 3 additions and 3 deletions.
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 -q "70.0" ); then

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

Expand Down Expand Up @@ -53,8 +53,8 @@ if [ -f /usr/bin/apt ]; then
fi

PACKAGES="mkvtoolnix=70.0.0-0~ubuntu2204bunkus01 mkvtoolnix-gui=70.0.0-0~ubuntu2204bunkus01"
else
echo "**** MKVToolNix already installed. ****"
#else
# echo "**** MKVToolNix already installed. ****"
fi
fi

Expand Down

0 comments on commit b1fc1c9

Please sign in to comment.