bin: add wallet shortcut to cli.

This commit is contained in:
Christopher Jeffrey 2016-10-23 03:11:37 -07:00
parent f9ffff8e80
commit 91f40eed93
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -28,9 +28,13 @@ if test x"$1" = x'cli'; then
exit 1
fi
if test x"$1" = x'wallet'; then
exec "${dir}/cli" "$@"
exit 1
fi
if test x"$1" = x'rpc'; then
shift
exec "${dir}/cli" rpc "$@"
exec "${dir}/cli" "$@"
exit 1
fi