Skip to content
Snippets Groups Projects
Commit b5f03a4c authored by jurgenhaas's avatar jurgenhaas
Browse files

#29 Add new option to start with an empty container

parent 96cf8980
No related branches found
Tags 1.9.0-beta2
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment