mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +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.
|
||||
# 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'
|
||||
else
|
||||
apt_pref='apt-get'
|
||||
fi
|
||||
|
||||
# Use sudo by default if it's installed
|
||||
if [[ -e $( which sudo 2>&1 ) ]]; then
|
||||
if whence sudo > /dev/null; then
|
||||
use_sudo=1
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue