From e383815e693a8b22ac5f06af67398f742f95e0d1 Mon Sep 17 00:00:00 2001 From: Exadra37 Date: Wed, 28 Apr 2021 14:44:22 +0100 Subject: [PATCH] Added missing exmples to the help of the ./shipfast bash script. Signed-off-by: Exadra37 --- shipfast | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shipfast b/shipfast index e3a2901..024a24d 100755 --- a/shipfast +++ b/shipfast @@ -16,18 +16,21 @@ Show_Help() { printf "\t./shipfast logs api\n" printf "\t./shipfast restart api\n" printf "\t./shipfast down api\n" + printf "\t./shipfast shell api sh\n" printf "\n Shipraider Web:\n" printf "\t./shipfast up web\n" printf "\t./shipfast logs web\n" printf "\t./shipfast restart web\n" printf "\t./shipfast down web\n" + printf "\t./shipfast shell web-api-key sh\n" printf "\n Android Studio:\n" printf "\t./shipfast up editor\n" printf "\t./shipfast logs editor\n" printf "\t./shipfast restart editor\n" printf "\t./shipfast down editor\n" + printf "\t./shipfast shell editor zsh\n" printf "\n Cache:\n" printf "\t./shipfast cache api delete v1 authorization-token-here\n" @@ -155,7 +158,7 @@ Logs() { Run_Shell() { local docker_compose_service="${1? Missing docker composer service name.}" - local shell="${2? Missing shell to use, e.g: zsh}" + local shell="${2? Missing shell to use, e.g: sh}" shift 2 local container_name="dev.${docker_compose_service}"