mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 18:51:41 +02:00
fix detection of python when no python2 or python3 links present
This commit is contained in:
@@ -103,7 +103,7 @@ login_shell_is_ok() {
|
|||||||
detect_python() {
|
detect_python() {
|
||||||
python=$(command -v python3)
|
python=$(command -v python3)
|
||||||
if [ -z "$python" ]; then python=$(command -v python2); fi
|
if [ -z "$python" ]; then python=$(command -v python2); fi
|
||||||
if [ -z "$python" ]; then python=python; fi
|
if [ -z "$python" ]; then python=$(command -v python); fi
|
||||||
if [ -z "$python" -o ! -x "$python" ]; then return 1; fi
|
if [ -z "$python" -o ! -x "$python" ]; then return 1; fi
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user