Skip to content

Instantly share code, notes, and snippets.

@pixelpogo
Last active December 15, 2015 08:19
Show Gist options
  • Save pixelpogo/5229541 to your computer and use it in GitHub Desktop.
Save pixelpogo/5229541 to your computer and use it in GitHub Desktop.
Install drush in your Uberspace account
# In your Uberspace account's $HOME directory do...
# Clone drush git repo
git clone --branch master http://git.drupal.org/project/drush.git
# Checkout the correct git branch
cd drush && git checkout 8.x-6.x
# Add drush/bin/drush to your .zshrc/.bashrc/.bash_profile file
echo "export PATH=$PATH:$HOME/drush" | cat >> ~/.zshrc
@nerdoc
Copy link

nerdoc commented Feb 20, 2015

may I suggest: ln -s $HOME/drush/drush $HOME/bininstead of the last line - changing .bashrc isn't necessary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment