mirror of
https://github.com/Ld-Hagen/fix-opera-linux-ffmpeg-widevine.git
synced 2026-03-30 04:53:50 +03:00
Fixed errors from PR
This commit is contained in:
@@ -10,17 +10,17 @@ if [[ $(uname -m) != "x86_64" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if command -v unzip > /dev/null; then
|
||||
if ! command -v unzip > /dev/null; then
|
||||
printf '\033[1munzip\033[0m package must be installed to run this script\n'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if command -v curl > /dev/null; then
|
||||
if ! command -v curl > /dev/null; then
|
||||
printf '\033[1mcurl\033[0m package must be installed to run this script\n'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if command -v jq > /dev/null; then
|
||||
if ! command -v jq > /dev/null; then
|
||||
printf '\033[1mjq\033[0m package must be installed to run this script\n'
|
||||
exit 1
|
||||
fi
|
||||
@@ -136,4 +136,4 @@ done
|
||||
|
||||
#Removing temporary files
|
||||
printf 'Removing temporary files...\n'
|
||||
rm -rf "$FIX_DIR"
|
||||
rm -rf "$FIX_DIR"
|
||||
|
||||
Reference in New Issue
Block a user