commit 99a030ec721eadfd234121122f4bc487d189b8d3
parent 838110bd02bed75ce9f252facbe57a54c89ac105
Author: Oscar Benedito <oscar@oscarbenedito.com>
Date: Sun, 21 Jun 2020 19:53:13 +0200
~/.zshenv to ~/.profile
Fixes issue with environment variables not declared.
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.local/bin/,dotfiles-check b/.local/bin/,dotfiles-check
@@ -4,7 +4,7 @@ ndf=""
for f in $(ls -A "$HOME" | grep "^\."); do
case $f in
- .cache|.config|.gnupg|.local|.mozilla|.pki|.ssh|.zshenv) continue ;;
+ .cache|.config|.gnupg|.local|.mozilla|.pki|.ssh|.profile) continue ;;
*) [ -z "$ndf" ] && ndf="$f" || ndf="$ndf, $f" ;;
esac
done
diff --git a/.profile b/.profile
@@ -0,0 +1 @@
+.config/zsh/.zshenv
+\ No newline at end of file
diff --git a/.zshenv b/.zshenv
@@ -1 +0,0 @@
-.config/zsh/.zshenv
-\ No newline at end of file