diff --git a/commands/host/aljibe-kickstart b/commands/host/aljibe-kickstart index 089a3e8..dd0ac54 100644 --- a/commands/host/aljibe-kickstart +++ b/commands/host/aljibe-kickstart @@ -1,7 +1,7 @@ #!/bin/bash #ddev-generated ## Description: Copy kickstar files to the project root -## Usage: aljibe-kickstart +## Usage: aljibe-kickstart [options] ## Flags: [{"Name":"noinstall","Usage":"setup --noinstall"}] ## Example: ddev aljibe-kickstart @@ -17,7 +17,6 @@ if [ ! -d "${DDEV_APPROOT}/.ddev/kickstart" ]; then exit 1 fi - while (( "$#" )); do case "$1" in -y|--yes) @@ -44,8 +43,7 @@ fi if [ "$CONFIRMATION" != "n" ]; then cp -rTf ${DDEV_APPROOT}/.ddev/kickstart/common ${DDEV_APPROOT} cp -rTf ${DDEV_APPROOT}/.ddev/kickstart/${DRUPAL_VERSION} ${DDEV_APPROOT} - # rm -fR ${DDEV_APPROOT}/.ddev/kickstart echo "Kickstart files have been copied. Make sure yout .gitignore file ignores .ddev/kickstart directory." else - echo "Operation cancelled." + echo "Kickstart operation cancelled." fi \ No newline at end of file