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

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