diff options
author | Loïc Le Page <llepage@igalia.com> | 2022-06-15 14:01:00 +0200 |
---|---|---|
committer | Loïc Le Page <llepage@igalia.com> | 2022-06-15 14:01:00 +0200 |
commit | 37125c59dfa2dbea1842b5daa9bb14bcea7b2101 (patch) | |
tree | 7f128c5220afc742af2877a7a09d0e28359493d0 /cerbero-uninstalled | |
parent | edcc1e9cb2a63d83d300534daac4a05cd3664a26 (diff) |
Fix syntax warning when launching cerbero-uninstalled
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/883>
Diffstat (limited to 'cerbero-uninstalled')
-rwxr-xr-x | cerbero-uninstalled | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero-uninstalled b/cerbero-uninstalled index ae5334ef..d4984687 100755 --- a/cerbero-uninstalled +++ b/cerbero-uninstalled @@ -24,7 +24,7 @@ ARGS=$@ SCRIPTDIR="`dirname $0`" -if [ "$OSTYPE" == "msys" ]; then +if [ "$OSTYPE" = "msys" ]; then if [ -f "/mingw/bin/mingw-get.exe" ]; then MSYS_VERSION=1 elif [ -f "/usr/bin/pacman" ]; then |