From d7b9bcb84c0c69315fc2817dc11c6c73c0f21455 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 9 Nov 2024 15:48:08 -0500 Subject: [PATCH] Fix flux command to not print on new shell --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 230ae39..d0d4594 100644 --- a/.bashrc +++ b/.bashrc @@ -124,7 +124,7 @@ fi # Custom command autocompletions PROG=tea source "$HOME/.config/tea/autocomplete.sh" PROG=pass source "$HOME/.local/bin/pass-completion.sh" -which flux && . <(flux completion bash) +which flux > /dev/null 2>&1 && . <(flux completion bash) # Store history after every command shopt -s histappend