diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f635f..9658cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Git submodules of your repo will be automatically cloned. - Added `-l/--latest`, `-w/--workspace`, and `--dry-run` options to `gantry stop` command. ### Fixed diff --git a/gantry/entrypoint.sh b/gantry/entrypoint.sh index 74fe315..462e5aa 100644 --- a/gantry/entrypoint.sh +++ b/gantry/entrypoint.sh @@ -66,13 +66,14 @@ if [ $attempts -eq 5 ]; then fi git checkout "$GIT_REF" +git submodule update --init --recursive if [[ -z "$NO_PYTHON" ]]; then echo " - ################################### - # [GANTRY] Building Python env... # - ################################### - " +################################### +# [GANTRY] Building Python env... # +################################### +" if [[ -z "$VENV_NAME" ]]; then VENV_NAME=venv @@ -149,10 +150,10 @@ if [[ -z "$NO_PYTHON" ]]; then echo " - ############################# - # [GANTRY] Environment info # - ############################# - " +############################# +# [GANTRY] Environment info # +############################# +" echo "Using $(python --version) from $(which python)" echo "Packages:"