aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-wallet
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-wallet')
-rwxr-xr-xbin/ak-wallet14
1 files changed, 8 insertions, 6 deletions
diff --git a/bin/ak-wallet b/bin/ak-wallet
index 39b38f6..708d6d7 100755
--- a/bin/ak-wallet
+++ b/bin/ak-wallet
@@ -29,10 +29,11 @@ PROGRAM=$(basename $0)
descriptionString="Wallet manager"
# At least these
-source $AK_LIBDIR/_ak_log
-source $AK_LIBDIR/_ak_script
-source $AK_LIBDIR/_ak_wallet
-source $AK_LIBDIR/_ak_coin
+source $AK_LIBDIR/_ak_lib_load
+_ak_lib_load _ak_log
+_ak_lib_load _ak_script
+_ak_lib_load _ak_wallet
+_ak_lib_load _ak_coin
# Flags to run
@@ -41,7 +42,8 @@ then
case $1 in
-h | --help) _ak_usage; exit;;
--generic) _ak_wallet_generic; exit;;
- * ) _ak_usage;;
+ * ) _ak_usage err;;
esac
-else _ak_usage
+else
+ _ak_usage err
fi