function drush_get_error
| 6.x drush.inc | drush_get_error() |
| 5.x drush.inc | drush_get_error() |
| 3.x drush.inc | drush_get_error() |
| 4.x drush.inc | drush_get_error() |
Return the current error handling status
Return value
The current aggregate error status
Related topics
9 calls to drush_get_error()
- drush_backend_output in includes/
backend.inc - Print the json-encoded output of this command, including the encoded log records, context information, etc.
- drush_bootstrap in includes/
bootstrap.inc - Bootstrap Drush to the desired phase.
- drush_command in includes/
command.inc - Entry point for commands into the drush_invoke() API
- drush_core_help in commands/
core/ help.drush.inc - Command callback for help command. This is the default command, when none other has been specified.
- drush_main in ./
drush.php - The main Drush function.
File
- includes/
drush.inc, line 1826 - The drush API implementation and helpers.
Code
function drush_get_error() {
return drush_get_context('DRUSH_ERROR_CODE', DRUSH_SUCCESS);
}