diff options
author | Dave Reisner <d@falconindy.com> | 2011-03-24 10:10:05 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-27 20:15:20 -0500 |
commit | c02556e2905dc1801d751db8cc3e96ccbedb76ab (patch) | |
tree | a5c31103177257b092cf967c3a0e1da001b70df4 /contrib | |
parent | a9fb4d9d5b065560f7e42378ad1ee3d2f7b19911 (diff) | |
download | pacman-c02556e2905dc1801d751db8cc3e96ccbedb76ab.tar.xz |
Rely on the return value of type instead of its output
Signed-off-by: Dave Reisner <d@falconindy.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/pacscripts.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pacscripts.in b/contrib/pacscripts.in index d3664091..8ad5173b 100755 --- a/contrib/pacscripts.in +++ b/contrib/pacscripts.in @@ -61,7 +61,7 @@ spacman() { if [ $EUID -eq 0 ]; then pacman "$@" else - if [ ! "$(type -p sudo)" ]; then + if ! type -p sudo; then error "Cannot find the sudo binary! Is sudo installed?" error "Otherwise try to run the program as root" exit 1 |