diff options
Diffstat (limited to 'toru')
-rwxr-xr-x | toru | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -280,11 +280,14 @@ where_is() { [ -n "${_path}" ] && break done + [ -z "$_path" ] && return 1 + echo ${_path} } # TODO: clean usage instructions function usage { + echo "" echo "$0 [options] repo1 ... repon" echo "" echo "Make a db containing PKGBUILD metadata." @@ -295,6 +298,7 @@ function usage { echo "-q : quiet" echo "-f : rebuild the db even if it is updated" echo "-p <pkgname>: return the path for pkgname" + echo "" exit 1 } @@ -306,13 +310,14 @@ force=false while getopts 'haqfpum' arg; do case $arg in h) usage; exit 0 ;; -# a) update_all_repos ;; +# TODO: Update all repos on $REPOS array +# a) update_all_repos ;; q) quiet=true ;; f) force=true ;; u) commands+=(update);; p) shift $(( OPTIND - 1 )) where_is "$1" - exit 0;; + exit $?;; m) commands+=(missing);; esac |