diff options
Diffstat (limited to '')
-rw-r--r-- | bin/cash/cash.1 | 2 | ||||
-rw-r--r-- | bin/cash/var.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/cash/cash.1 b/bin/cash/cash.1 index 14c7aeca..55e7fa8e 100644 --- a/bin/cash/cash.1 +++ b/bin/cash/cash.1 @@ -142,7 +142,7 @@ The default value of .Ev ENV is: .Pp -.Dl "ENV=${XDG_CONFIG_HOME:-${HOME}/.config}/cash/cashrc" +.Dl "ENV=${XDG_CONFIG_HOME:-${HOME}/.config}/cash/env.sh" . .Pp The first non-option argument specified on the command line diff --git a/bin/cash/var.c b/bin/cash/var.c index e183eaa3..18e5de62 100644 --- a/bin/cash/var.c +++ b/bin/cash/var.c @@ -106,7 +106,7 @@ struct localvar *localvars; int forcelocal; static const struct varinit varinit[] = { - { &venv, 0, "ENV=${XDG_CONFIG_HOME:-${HOME}/.config}/cash/cashrc", NULL }, + { &venv, 0, "ENV=${XDG_CONFIG_HOME:-${HOME}/.config}/cash/env.sh", NULL }, #ifndef NO_HISTORY { &vhistsize, VUNSET, "HISTSIZE=", sethistsize }, |