Skip to content

Commit

Permalink
Merge branch 'multiple-drupal-version-support'
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjol committed Dec 11, 2024
2 parents 340846b + 3131962 commit facf97d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions commands/host/aljibe-kickstart
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -17,7 +17,6 @@ if [ ! -d "${DDEV_APPROOT}/.ddev/kickstart" ]; then
exit 1
fi


while (( "$#" )); do
case "$1" in
-y|--yes)
Expand All @@ -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

0 comments on commit facf97d

Please sign in to comment.