From 18e7c56ab85e3ea65d75d6e74767f685385dc995 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Thu, 10 Aug 2017 16:15:14 -0500
Subject: [PATCH] Forgot to pipe output of a profile test to null file
 Obviously, this commit fixes that.

---
 .profile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.profile b/.profile
index 43f8386f..d42e25f9 100755
--- a/.profile
+++ b/.profile
@@ -39,7 +39,7 @@ __define_aliases() {
 # Mostly just helper wrappers and such
 __define_functions() {
     # Arch-only helper functions
-    if [ "$(which pacman)" ]; then
+    if [ "$(which pacman > /dev/null 2>&1)" ]; then
         export PAC_HELPER="pacaur"
         local helpers="pacaur yaourt pacman"
         for helper in $helpers; do