summaryrefslogtreecommitdiff
path: root/is_built
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernandez <hahj87@gmail.com>2011-03-25 07:27:02 -0700
committerJoshua Ismael Haase Hernandez <hahj87@gmail.com>2011-03-25 07:27:02 -0700
commiteeb80c2576bfe94b4905e11357e17775754773d0 (patch)
tree441b73bdcd6ba9019a5afb4b89e21138db908e3b /is_built
parent691baba22e7fb1fe47005558ca92e540566fe383 (diff)
is_built is so small it's better this way
Diffstat (limited to 'is_built')
-rwxr-xr-xis_built4
1 files changed, 2 insertions, 2 deletions
diff --git a/is_built b/is_built
index 968c771..9dc5d1c 100755
--- a/is_built
+++ b/is_built
@@ -1,7 +1,7 @@
#!/bin/bash
# Detect is a package is installed or in a database
-stdnull "pacman -Qqi $1" || \
-stdnull "pacman -Sqi $1"
+pacman -Qqi $1 >/dev/null 2>&1 || \
+pacman -Sqi $1 >/dev/null 2>&1
exit $?