aboutsummaryrefslogtreecommitdiff
path: root/share/templater/drupal8/setup
diff options
context:
space:
mode:
Diffstat (limited to 'share/templater/drupal8/setup')
-rwxr-xr-xshare/templater/drupal8/setup6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/templater/drupal8/setup b/share/templater/drupal8/setup
index fde815e..f9c8dfc 100755
--- a/share/templater/drupal8/setup
+++ b/share/templater/drupal8/setup
@@ -12,7 +12,7 @@ source $SHARE/templater/functions || exit 1
# Drupal8 implementation
function templater_drupal8 {
if [ ! -e 'settings.php' ]; then
- __templater_echo "Setting up Drupal 8..."
+ templater_echo "Setting up Drupal 8..."
if [ ! -e ".gitignore" ] || ! grep -q "^settings.php" .gitignore; then
echo settings.php >> .gitignore
@@ -36,7 +36,7 @@ function templater_drupal8 {
ln -sf services.dev.yml services.yml
- __templater_install_makefile $SHARE/drupal8/files/Makefile.drupal8
+ templater_install_makefile $SHARE/drupal8/files/Makefile.drupal8
if [ ! -e "drupal.make.yml" ]; then
cp $SHARE/drupal8/files/drupal.make.yml .
@@ -56,7 +56,7 @@ function templater_drupal8 {
touch {files,config,themes,modules,libraries,vendor}/.empty
git add -f {files,config/sync,themes,modules,libraries}/.empty
else
- __templater_echo "Drupal already set"
+ templater_echo "Drupal already set"
fi
}