commit 1a5d2fdfc7e95364e3fc5a1f18548814508a7bd3
parent edc76e4566a161a07236fa42aac101780522b8ae
Author: Claudio Alessi <smoppy@gmail.com>
Date: Fri, 2 Feb 2018 22:35:51 +0100
Remove help command.
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/droid b/src/droid
@@ -89,7 +89,6 @@ Commands:
upgrade\t: build and install the app (assembleDebug)
deploy\t: build and install the app (assembleRelease)
clean\t: removes the builds from the current directory
- help\t\t: print this help
"
exit 1
}
@@ -105,7 +104,6 @@ main() {
upgrade) do_upgrade;;
deploy) do_deploy;;
clean) do_clean;;
- help) usage;;
*) usage;;
esac
}