Merge pull request #14 from arielj/fix-array-push

Push elements into array instead of concatenating strings
This commit is contained in:
Maksim Ivanov
2023-06-11 18:55:20 +03:00
committed by GitHub

View File

@@ -33,11 +33,11 @@ readonly WIDEVINE_MANIFEST_NAME='manifest.json'
OPERA_VERSIONS=()
if [ -x "$(command -v opera)" ]; then
OPERA_VERSIONS+="opera"
OPERA_VERSIONS+=("opera")
fi
if [ -x "$(command -v opera-beta)" ]; then
OPERA_VERSIONS+="opera-beta"
OPERA_VERSIONS+=("opera-beta")
fi
for opera in ${OPERA_VERSIONS[@]}; do