Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Spelling #12

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ files](#tips-for-working-with-make-files).
will use this to (re)build your code base.

1. Set up config for your own site build in buildmanager.example.yml,
following one of the exampe config files included with Build Manager.
following one of the example config files included with Build Manager.


### (Re)Build
Expand All @@ -98,7 +98,7 @@ Do this:

- hook_buildmanager_build, add/update prebuild and postbuild commands or
abort build
- hook_buildmanager_build_options, return addtional options to include in
- hook_buildmanager_build_options, return additional options to include in
buildmanager-build
- hook_buildmanager_configure, insert your extension into the
`buildmanager-configure` interactive prompt to generate additional config
Expand Down
2 changes: 1 addition & 1 deletion buildmanager.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function drush_buildmanager_build($config_file = '') {
$output = drush_shell_exec_output();
drush_log(implode("\n", $output), 'error');
$reset_command = "git reset --hard {$head}";
$error_message = dt('Review error message from shell command above to see why this build did not complete successfully. To reset repo to the state it was in before begnning this build you can do this: !fix',
$error_message = dt('Review error message from shell command above to see why this build did not complete successfully. To reset repo to the state it was in before beginning this build you can do this: !fix',
array('!fix' => "\n\t{$reset_command}"));
drush_log($error_message, 'error');

Expand Down