From ef4d501e902eafef1750e758d67b06ce0c369c4f Mon Sep 17 00:00:00 2001 From: Theodoros Ploumis Date: Tue, 19 Apr 2016 16:33:01 +0300 Subject: [PATCH 1/2] Add wget and git as options to install the plugin --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index c207ba5..f15d493 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,26 @@ Requirements Installation ------------ +A) Using composer + 1. cd "$HOME/.drush" 2. composer global require "drush/config-extra" 3. drush cc drush +B) Using wget + +1. cd "$HOME/.drush" +2. wget https://github.com/drush-ops/config-extra/archive/master.tar.gz +3. tar -zxvf config-extra-master.tar.gz +4. mv config-extra-master config-extra +5. drush cc drush + +C) Using git + +1. cd "$HOME/.drush" +2. git clone git@github.com:drush-ops/config-extra.git +3. drush cc drush + Resources --------- * [Drush configuration workflows](https://github.com/pantheon-systems/drush-config-workflow) can help you get started with installation, environment setup and configuration workflow planning. From 839414003c0606a239aacf78e15be52f33333751 Mon Sep 17 00:00:00 2001 From: Theodoros Ploumis Date: Tue, 19 Apr 2016 16:40:21 +0300 Subject: [PATCH 2/2] Remove config-extra-master.tar.gz after extracting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f15d493..184d16b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ B) Using wget 1. cd "$HOME/.drush" 2. wget https://github.com/drush-ops/config-extra/archive/master.tar.gz -3. tar -zxvf config-extra-master.tar.gz +3. tar -zxvf config-extra-master.tar.gz && rm -f config-extra-master.tar.gz 4. mv config-extra-master config-extra 5. drush cc drush