mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-06 02:51:32 +01:00
Fix the command checks in the debian plugin
The previous implementation made the assumption that `which` would return a path when `sudo` and/or `aptitude` were installed; however, when a command is aliased, e.g., `nocorrect sudo`, no path is returned, causing a false negative in the test.
This commit is contained in:
parent
b6ea876971
commit
237e6d817f
1 changed files with 2 additions and 2 deletions
|
|
@ -6,14 +6,14 @@
|
||||||
|
|
||||||
# Use aptitude if installed, or apt-get if not.
|
# Use aptitude if installed, or apt-get if not.
|
||||||
# You can just set apt_pref='apt-get' to override it.
|
# You can just set apt_pref='apt-get' to override it.
|
||||||
if [[ -e $( which aptitude 2>&1 ) ]]; then
|
if whence aptitude > /dev/null; then
|
||||||
apt_pref='aptitude'
|
apt_pref='aptitude'
|
||||||
else
|
else
|
||||||
apt_pref='apt-get'
|
apt_pref='apt-get'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Use sudo by default if it's installed
|
# Use sudo by default if it's installed
|
||||||
if [[ -e $( which sudo 2>&1 ) ]]; then
|
if whence sudo > /dev/null; then
|
||||||
use_sudo=1
|
use_sudo=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue