From 4aeeebbe1ad15e9eeb0a709f4bf49abf9d705042 Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Fri, 13 Nov 2020 11:48:42 -0600 Subject: [PATCH] .pam_environment: s/$/@/ for PATH NOTE: pam's env management is going away soon https://github.com/linux-pam/linux-pam/issues/7#issuecomment-721595903 --- .pam_environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pam_environment b/.pam_environment index 9f75d7f..654a04c 100644 --- a/.pam_environment +++ b/.pam_environment @@ -2,7 +2,7 @@ # Add home bin folder and ~/.node_modules/bin to $PATH -PATH DEFAULT= OVERRIDE=${HOME}/bin:${HOME}/.node_modues/bin:${PATH} +PATH DEFAULT= OVERRIDE=@{HOME}/bin:@{HOME}/.node_modues/bin:@{PATH} # Redirect npm global installs to user folder instead # Ref: https://wiki.archlinux.org/index.php/Node.js#Allow_user-wide_installations