summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlen <alen@dotfiles.xyz>2023-09-23 23:39:28 +0400
committerAlen <alen@dotfiles.xyz>2023-09-23 23:39:28 +0400
commit94d6fa3758033e2834ba2844bd06827adf454959 (patch)
treecd5e53f1deed25f8731f6f87c5441a0e4fee3ee8
parent4d99a78332f3c5b9985386629cb38c78dc50b398 (diff)
Fix path backup export names
-rw-r--r--dot_zshenv6
1 files changed, 3 insertions, 3 deletions
diff --git a/dot_zshenv b/dot_zshenv
index df0f06e..4cae70b 100644
--- a/dot_zshenv
+++ b/dot_zshenv
@@ -53,9 +53,9 @@ fpath=(
 
 # Back these up as they could get mangled in system profile
 # TODO: Restore them in zshrc?
-export $__PATH="${PATH}"
-export $__MANPATH="${MANPATH}"
-export $__INFOPATH="${INFOPATH}"
+export __PATH="${PATH}"
+export __MANPATH="${MANPATH}"
+export __INFOPATH="${INFOPATH}"
 
 # Never allow global pip
 export PIP_REQUIRE_VENV=1