summaryrefslogtreecommitdiffstatshomepage
path: root/sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-08-22 12:51:35 -0500
committerToby Vincent <tobyv13@gmail.com>2022-08-22 12:51:35 -0500
commit2ca953cead8786a801c21805dcb0e7496069f887 (patch)
treebfb876b6357c8a48ffa6b297d176648b18426ee5 /sh
parent798ca4a3364852032abd0841bc8292dda48d7f5f (diff)
fix(sh): pipe errors from environment generators to /dev/null
Diffstat (limited to 'sh')
-rw-r--r--sh/.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.profile b/sh/.profile
index e26721e..0196e9a 100644
--- a/sh/.profile
+++ b/sh/.profile
@@ -2,7 +2,7 @@
# shellcheck disable=1091,2046
# environment.d
-/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator |
+/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 2>/dev/null |
while read -r l; do
eval export $((l))
done