Skip to content

Instantly share code, notes, and snippets.

@opi
Last active February 5, 2018 15:44
Show Gist options
  • Save opi/5fb5024b193a9f9ef7b65bae173cadad to your computer and use it in GitHub Desktop.
Save opi/5fb5024b193a9f9ef7b65bae173cadad to your computer and use it in GitHub Desktop.
Backdrop Drush

Backdrop drush

Source: https://github.com/backdrop-contrib/drush

Install

Create Drush custom commands folder

mkdir -p ~/.drush/commands

Get Backdrop Drush commands

cd ~/.drush/commands
git clone https://github.com/backdrop-contrib/drush.git backdrop

Use latest stable release

cd backdrop
git checkout $(git tag | tail -1)

Refresh Drush commands cache

drush cc drush

Update

cd ~/.drush/commands/backdrop
git fetch --tags
git checkout $(git tag | tail -1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment