From cc3a150b076c79452ae04229f4775074eb501028 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Fri, 23 Apr 2021 03:57:17 +0200 Subject: [PATCH] ghco: silence update messages --- script/ghco | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/ghco b/script/ghco index 0c3337e..c85379f 100755 --- a/script/ghco +++ b/script/ghco @@ -3,6 +3,8 @@ # Select and checkout a GitHub pull request using the GitHub CLI (required) set -e +export GH_NO_UPDATE_NOTIFIER=1 + prid=$(gh pr list | fzf | awk '{print $1}') if [ -z $prid ]; then exit 0