Last active
November 3, 2017 12:55
-
-
Save marcobiedermann/9f571e5f643fa86f1f365630286bf912 to your computer and use it in GitHub Desktop.
Drupal Installation Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
DRUPAL_VERSION="8.4.1" | |
# Install Drupal | |
wget http://ftp.drupal.org/files/projects/drupal-${DRUPAL_VERSION}.tar.gz | |
tar -xzf drupal-${DRUPAL_VERSION}.tar.gz | |
rm -f drupal-${DRUPAL_VERSION}.tar.gz | |
cd drupal-${DRUPAL_VERSION} | |
cp -rf . .. | |
cd .. | |
rm -rf drupal-${DRUPAL_VERSION} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment