diff options
Diffstat (limited to 'linux/bin/asdf')
-rwxr-xr-x | linux/bin/asdf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/bin/asdf b/linux/bin/asdf index 5c50717..314f0c9 100755 --- a/linux/bin/asdf +++ b/linux/bin/asdf @@ -8,7 +8,7 @@ if [ -f "${NEO_CONFIG}" ]; then . "${NEO_CONFIG}" || die "Failed to source ${NEO_CONFIG}" elif [ -f "${HOME}"/.neorc ]; then - . "${HOME}"/.neorc || die "Failed to source ${HOME}/neo.conf" + . "${HOME}"/.neorc || die "Failed to source ${HOME}/.neorc" elif [ -f /etc/neo.conf ]; then . /etc/neo.conf || die "Failed to source /etc/neo.conf" else |