aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-repositories
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-01 19:30:33 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-01 19:30:33 +0200
commit3ca95b33f2dc650b384a96dc1d3aa3d8d18553d1 (patch)
tree83dcd8a473d78788e852bccfc3b187ab7b54e466 /bin/ak-repositories
parentf8d2236e55e5c369b218017d1de1058d6a8ee361 (diff)
downloadarching-kaos-tools-3ca95b33f2dc650b384a96dc1d3aa3d8d18553d1.tar.gz
arching-kaos-tools-3ca95b33f2dc650b384a96dc1d3aa3d8d18553d1.tar.bz2
arching-kaos-tools-3ca95b33f2dc650b384a96dc1d3aa3d8d18553d1.zip
Changes help subcommand to flag style -h, --help
Diffstat (limited to 'bin/ak-repositories')
-rwxr-xr-xbin/ak-repositories18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/ak-repositories b/bin/ak-repositories
index 7689e08..1429341 100755
--- a/bin/ak-repositories
+++ b/bin/ak-repositories
@@ -143,21 +143,21 @@ publish(){
}
usage(){
- echo "TODO"
+ echo "-h, --help"
echo "index | add | publish | update"
exit
}
if [ ! -z $1 ]
then
- case $1 in
- help) usage; exit;;
- index) index; exit;;
- add) add "$2"; exit;;
- publish) publish "$2"; exit;;
- update) update "$2"; exit;;
- *) echo "No command $1";usage; exit;;
- esac
+ case $1 in
+ -h | --help) usage; exit;;
+ index) index; exit;;
+ add) add "$2"; exit;;
+ publish) publish "$2"; exit;;
+ update) update "$2"; exit;;
+ *) echo "No command $1";usage; exit;;
+ esac
else
usage
fi