From ca2e7371dfc55e64bb2c1b8d65fcee35b1bf2a86 Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Wed, 3 Jan 2024 20:41:32 +0000 Subject: [PATCH] Fixes bash stty complaint --- home/dot_config/shell/aliases.sh.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/dot_config/shell/aliases.sh.tmpl b/home/dot_config/shell/aliases.sh.tmpl index 0629d087..a465b11f 100644 --- a/home/dot_config/shell/aliases.sh.tmpl +++ b/home/dot_config/shell/aliases.sh.tmpl @@ -7,7 +7,8 @@ ### macOS Polyfills # Note: May cause conflicts if [ -d /Applications ] && command -v brew > /dev/null; then - PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH" + # Causes issues with stty + # PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH" PATH="$(brew --prefix)/opt/gnu-indent/libexec/gnubin:$PATH" PATH="$(brew --prefix)/opt/gnu-sed/libexec/gnubin:$PATH" PATH="$(brew --prefix)/opt/gnu-tar/libexec/gnubin:$PATH"