0
0
mirror of https://github.com/tj/n.git synced 2024-11-25 07:39:21 +01:00

fixed; error message when executing with uninstalled version

This commit is contained in:
Aaron Heckmann 2012-08-25 09:10:51 -07:00
parent 73ee2e7fb0
commit 17209227b7

2
bin/n
View File

@ -265,7 +265,7 @@ execute_with_version() {
if test -f $bin; then
$bin $@
else
abort "$1 is not installed"
abort "$version is not installed"
fi
}