From b5f03a4ccfc5880f602be7dfc0d9d83e2a882c77 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Wed, 28 Aug 2019 17:58:53 +0200 Subject: [PATCH] docker/l3d#29 Add new option to start with an empty container --- start.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/start.sh b/start.sh index 770cd79..948e750 100755 --- a/start.sh +++ b/start.sh @@ -30,6 +30,7 @@ if [[ ! -n "$EXISTING" ]]; then echo "Lets start a new project here ..." echo "" echo "Options to start:" + echo " 0 none: start with an empty container" echo " 1 LakeDrops Drupal 8 project template" echo " 2 Drupal's community project template" echo " 3 Existing git repository" @@ -39,6 +40,9 @@ if [[ ! -n "$EXISTING" ]]; then while true; do read -p "Choose an option: " OPTION case ${OPTION} in + 0 ) + break + ;; 1 ) PROJECT="lakedrops/d8-project" -- GitLab