From ed51725a6e21b016417c8d476352f69f0093fbe7 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 26 Jan 2016 15:45:17 +0000 Subject: [PATCH] Update Bash RC script to ensure background process runs silently. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 4b6f44e..8d18909 100644 --- a/.bashrc +++ b/.bashrc @@ -118,7 +118,7 @@ fi # Update brew if it's older than one day #-------------------------------------------------------------------------------- if [ -x /usr/local/bin/brew ]; then - find /usr/local/.git -name FETCH_HEAD -mtime +0 -exec brew update \; >> ~/var/log/brew-update.log 2>&1 & + ( find /usr/local/.git -name FETCH_HEAD -mtime +0 -exec brew update \; >> ~/var/log/brew-update.log 2>&1 & ) fi #--------------------------------------------------------------------------------