Remove unused code from manage.sh

This commit is contained in:
Andrey Antukh
2017-02-21 11:25:23 +01:00
parent 835dcb15d7
commit f92df1d171

View File

@@ -31,7 +31,7 @@ function run_image {
}
function usage {
echo "USAGE: $0 [ build | run | start ]"
echo "USAGE: $0 [ build | run]"
}
case $1 in
@@ -41,10 +41,6 @@ case $1 in
run)
run_image
;;
start)
start_local
;;
*)
usage
;;