Just kidding, still need plugins

I guess things don't work in the custom folder. Oh well.
This commit is contained in:
Nathan Stilwell 2015-03-04 12:44:09 -05:00
commit a6a0a0855e
3 changed files with 129 additions and 3 deletions

View file

@ -0,0 +1,21 @@
function dock_usage () {
echo
echo " usage: dock <command>"
echo
echo "JUST A TEST, THERE ARE NO COMMANDS"
}
function dock () {
if [ -z "$1" ]; then
dock_usage;
# else
# [ "$1" = "patch" ] && gerrit_patch "$2"
# [ "$1" = "push" ] && gerrit_push "$branch";
# [ "$1" = "review" ] && gerrit_review "$branch";
# [ "$1" = "reset" ] && gerrit_reset;
# [ "$1" = "draft" ] && gerrit_draft "$branch";
# [ "$1" = "pull" ] && gerrit_pull "$branch";
# [ "$1" = "clone" ] && gerrit_clone "$2";
# [ "$1" = "setup" ] && gerrit_setup;
fi
}