From 3fce58eff6f5caabfbd187a8584f2fb12ecbc41b Mon Sep 17 00:00:00 2001 From: Marc Serrat Date: Tue, 13 Jul 2021 13:19:35 +0200 Subject: [PATCH] LITE-19401: Human readable message for bash container --- entrypoint.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index f5a0259..0bd3bc6 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -21,4 +21,9 @@ popd echo "Extension installed." +if [ "$@" == *bash* ]; then +echo "In order to run the extension manually run the command cextrun" +echo "In order to run the extension in debug mode, please use cextrun -d command" +echo "In the case that you modified dependencies or want to install development dependencies run the command: poetry install" +fi exec "$@" \ No newline at end of file