From 14465e259f3e6643b8f63e035660eb841996f2fa Mon Sep 17 00:00:00 2001 From: Ben Partridge Date: Thu, 28 Nov 2019 16:23:48 +1100 Subject: [PATCH] Redirect all logs to dev/null when running pipenv sync --- bin/install-ansible | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-ansible b/bin/install-ansible index d50f943..6d3d349 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -21,7 +21,7 @@ export PATH=/usr/local/bin:$PATH pip3 install pipenv echo "Installing ansible and dependencies..." -PIPENV_HIDE_EMOJIS=1 pipenv sync >/dev/null +PIPENV_HIDE_EMOJIS=1 pipenv sync 2>1 >/dev/null if [[ $1 == "--dev" ]]; then pipenv sync --dev