From 757b6772356ccd31bb38435735908e0535361c59 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Wed, 21 Sep 2022 08:58:04 -0700 Subject: [PATCH] Suppress bash deprecation warning on MacOS --- src/.bash_profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/.bash_profile b/src/.bash_profile index 35d5ded..ff028de 100755 --- a/src/.bash_profile +++ b/src/.bash_profile @@ -13,6 +13,9 @@ export HISTCONTROL=ignoreboth export HISTSIZE=1000 export HISTFILESIZE=5000 +# suppress bash deprecation warning on MacOS +export BASH_SILENCE_DEPRECATION_WARNING=1 + # XDG export XDG_CACHE_HOME="$HOME/.cache" export XDG_CONFIG_HOME="$HOME/.config"