From c33b936f84d6742fc55077d45bd235e9f1675087 Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Thu, 27 Jul 2023 08:53:50 -0400 Subject: [PATCH] suppress error when rustup/cargo not available --- dot_config/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/environment b/dot_config/environment index 3f09de5..657522e 100644 --- a/dot_config/environment +++ b/dot_config/environment @@ -1,6 +1,6 @@ # icky, but necessary since this might inject the needed XDG vars . "$HOME/.config/environment.local" 2>/dev/null -. "$XDG_DATA_HOME/cargo/env" +. "$XDG_DATA_HOME/cargo/env" 2>/dev/null # editor export EDITOR=/usr/bin/nvim