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

Remove some empty lines

Check for composer executable
parent a0b66564
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
if ! command -v command &> /dev/null
then
echo "Composer executable could not be found"
exit
fi
COMPOSER=composer.spoons.json
export COMPOSER
......@@ -7,9 +13,9 @@ echo -e "\n\n\nInstalling DrupalSpoons plugin"
composer require --dev --no-interaction lakedrops/drupal-spoons:dev-master composer/installers:^1
echo -e "\n\n\nPreparing $COMPOSER"
composer drupalspoons:prepare
echo -e "\n\n\nConfiguring project for local tests"
echo -e "\nConfiguring project for local tests"
composer drupalspoons:configure
echo -e "\n\n\nInstalling dependencies"
echo -e "\nInstalling dependencies"
composer update --dev --no-interaction
echo -e "\n\n\n===================================================="
......
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