aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh')
-rw-r--r--sh/profile2
-rw-r--r--sh/profile.d/keychain.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/sh/profile b/sh/profile
index 14b0a56b..164d765c 100644
--- a/sh/profile
+++ b/sh/profile
@@ -1,6 +1,6 @@
# Set editor
EDITOR='vi'
-VISUAL="$EDITOR"
+VISUAL=$EDITOR
export EDITOR VISUAL
# Set pager
diff --git a/sh/profile.d/keychain.sh b/sh/profile.d/keychain.sh
index 711c8286..812143f4 100644
--- a/sh/profile.d/keychain.sh
+++ b/sh/profile.d/keychain.sh
@@ -1,6 +1,6 @@
# ssh-askpass setup
if command -v ssh-askpass >/dev/null 2>&1; then
- SSH_ASKPASS="$(command -v ssh-askpass)"
+ SSH_ASKPASS=$(command -v ssh-askpass)
export SSH_ASKPASS
fi