Merge pull request #881 from chrisplo/detect-python3

Detect python3
This commit is contained in:
Doug Smith 2022-07-22 09:48:40 -04:00 committed by GitHub
commit f4c0adf54c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,7 @@ function warn()
log "WARN: {$1}"
}
if ! type python3 &> /dev/null; then
if type python3 &> /dev/null; then
alias python=python3
fi