summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlinux/bin/asdf2
-rwxr-xr-xlinux/bin/uiae2
2 files changed, 2 insertions, 2 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
diff --git a/linux/bin/uiae b/linux/bin/uiae
index 3ffd1f5..e83c315 100755
--- a/linux/bin/uiae
+++ b/linux/bin/uiae
@@ -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