0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(installer): don't use sudo when user is in Termux (#11591)

Co-authored-by: Marc Cornellà <hello@mcornella.com>
This commit is contained in:
Webpage-gh 2023-03-31 13:37:01 +08:00 committed by GitHub
parent fcbdc330ff
commit 7837ba6a99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,6 +84,11 @@ command_exists() {
user_can_sudo() {
# Check if sudo is installed
command_exists sudo || return 1
# Termux can't run sudo unless the device is rooted. Either way, `chsh` works
# without sudo, so we can detect it and exit the function early.
case "$PREFIX" in
*com.termux*) return 1 ;;
esac
# The following command has 3 parts:
#
# 1. Run `sudo` with `-v`. Does the following: