Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gapple/drush-update-rerun
Drush plugin to re-execute a single module update hook
https://github.com/gapple/drush-update-rerun
drupal drush drush-commands
Last synced: about 2 months ago
JSON representation
Drush plugin to re-execute a single module update hook
- Host: GitHub
- URL: https://github.com/gapple/drush-update-rerun
- Owner: gapple
- License: mit
- Created: 2017-05-19T00:58:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-05T18:19:30.000Z (over 7 years ago)
- Last Synced: 2024-11-16T15:52:14.187Z (3 months ago)
- Topics: drupal, drush, drush-commands
- Language: PHP
- Homepage: https://gapple.github.io/drush-plugins/
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
Drush Update-Rerun
===============Drush command to re-execute a single module update hook
## Usage
```
Arguments:
module Module machine name
version Update hook versionExamples:
drush update_rerun foo 7001 Run update 7001 for 'foo' module
Aliases: urr
```## Installation
### Global
#### Using Composer
1. Require `composer/installers`
```bash
composer global require composer/installers
```2. Configure the installer path for drush plugins in `~/.composer/composer.json`
```json
{
"extra": {
"installer-paths": {
"../.drush/plugins/{$name}": ["type:drupal-drush"]
}
}
}
```3. Require `gapple/drush-update-rerun`
```bash
composer global require gapple/drush-update-rerun
```#### Manual Installation
1. [Download the release package](https://github.com/gapple/drush-update-rerun/releases)
2. Unzip the package to `~/.drush/`### Project
#### Using Composer
1. Require `composer/installers` in your project
```bash
composer require composer/installers
```2. Configure the installer path for drush plugins in your project's `composer.json`
```json
{
"extra": {
"installer-paths": {
"drush/contrib/{$name}": ["type:drupal-drush"]
}
}
}
```3. Require `gapple/drush-update-rerun` in your project
```bash
composer require gapple/drush-update-rerun
```#### Manual Installation
1. [Download the release package](https://github.com/gapple/drush-update-rerun/releases)
2. Unzip the package to the `drush` folder within your project