Fix detection typo

This commit is contained in:
CorpNewt 2022-05-10 16:36:54 -05:00 committed by GitHub
parent db48ca59bf
commit 7022e032d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ set_use_py3_if () {
# Missing vars - bail with no changes.
return
fi
if [ "$(compare_to_version "$1" "$2")" == "0" ]; then
if [ "$(compare_to_version "$1" "$2")" == "1" ]; then
use_py3="$3"
fi
}