#! /bin/bash

USAGE="<command> [<args>]

The 'release' commands are:

   new       Create a new tagged kernel release

See 'kdist release <command> --help for more information on a specific command."

#
# For now nothing interesting to see here.
#
kdist_subcommand=$1
shift


case $kdist_subcommand in
new)
	;;
*)
	usage
esac


source $libexecdir/kdist-$kdist_command--$kdist_subcommand "$@"


