diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-pkg | 2 | ||||
-rwxr-xr-x | bin/ak-zchain | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -26,6 +26,7 @@ ## -h, --help Prints this help message ## --make-releases-from-local Makes releases from all local installation's module ## --make-release-from-local Makes release from a local installation's module +## --make-release-from-directory Makes release from a local directory ## --install-from-zblock <zblock> Installs from a zblock ## --install-from-akfs <maphash> Installs from an AKFS map ## --uninstall Uninstalls a module selected from a menu @@ -47,6 +48,7 @@ then -h | --help) _ak_usage; exit;; --make-releases-from-local) shift; _ak_pkg_all_modules_make_releases_from_local_installation; exit;; --make-release-from-local) _ak_pkg_all_modules_make_release_from_local_installation $1; exit;; + --make-release-from-directory) shift; _ak_pkg_all_modules_make_release_from_local_directory $1; exit;; --install-from-zblock) shift; _ak_pkg_install_from_zblock $1; exit;; --install-from-akfs) shift; _ak_pkg_install_from_akfsmap $1; exit;; --uninstall) _ak_pkg_uninstall; exit;; diff --git a/bin/ak-zchain b/bin/ak-zchain index 212b606..abd43b2 100755 --- a/bin/ak-zchain +++ b/bin/ak-zchain @@ -76,7 +76,7 @@ if [ ! -z $1 ]; then --crawl-self) _ak_zchain_crawl_self; exit;; --crawl-remote-ipfs) _ak_zchain_crawl_remote_ipfs $2; exit;; --crawl-remote-ipns) _ak_zchain_crawl_remote_ipns $2; exit;; - --get-latest) _ak_zchain_get_latest && printf '\n'; exit;; + --get-latest) _ak_zchain_get_latest; exit;; --output-types)shift; _ak_zchain_output_types $1; exit;; * ) _ak_usage;; esac |