diff options
author | Kali Kaneko <kali@leap.se> | 2015-09-23 12:16:50 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-09-23 14:04:21 -0400 |
commit | 069e832e0fcfb70a2521b4857a34a8e47ffa64bc (patch) | |
tree | 9ed3f71cc98e8de454d234d912249ee406efd5ee | |
parent | b03c6f3da92615977a604bcf8a482339d3b6ce0b (diff) |
[docs] fix usage indication for bitmask-docker script
-rwxr-xr-x | docker/bitmask-docker.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/bitmask-docker.sh b/docker/bitmask-docker.sh index af91145b..ff82e833 100755 --- a/docker/bitmask-docker.sh +++ b/docker/bitmask-docker.sh @@ -81,13 +81,14 @@ help() { echo ">> Bitmask on docker" echo "Run the bitmask app in a docker container." echo - echo "Usage: $0 {init bitmask.json | update | run | help }" + echo "Usage: $0 {init bitmask.json | update bitmask.json | build | shell | run | help}" + echo + echo " ?.json : The bitmask*.json file describes the version that will be used for each repo." echo echo " init : Clone repositories, install dependencies, and get bitmask ready to be used." - echo " The bitmask.json file contains the version that will be used for each repo." + echo " update : Update the repositories and install new deps (if needed)." echo " build : Build the docker image for bitmask." echo " shell : Run a shell inside a bitmask docker container (useful to debug)." - echo " update : Update the repositories and install new deps (if needed)." echo " run : Run the client (any extra parameters will be sent to the app)." echo " help : Show this help" echo |