-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from simahawk/master
shell_command_after: fix doc and add real life example
- Loading branch information
Showing
1 changed file
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,7 +125,7 @@ the aggregated directory. | |
merges: | ||
- oca 8.0 | ||
target: acsone aggregated_branch_name | ||
shell_command_after: echo 'my command' | ||
shell_command_after: echo 'my command' | ||
./connector-interfaces: | ||
remotes: | ||
|
@@ -134,9 +134,23 @@ the aggregated directory. | |
merges: | ||
- oca 9.0 | ||
target: acsone aggregated_branch_name | ||
shell_command_after: | ||
- echo 'a first command' | ||
- echo 'a second command' | ||
shell_command_after: | ||
- echo 'a first command' | ||
- echo 'a second command' | ||
A real life example: applying a patch | ||
|
||
.. code-block:: yaml | ||
./odoo: | ||
remotes: | ||
oca: https://github.com/OCA/OCB.git | ||
acsone: [email protected]/acsone/OCB.git | ||
merges: | ||
- oca 9.0 | ||
target: acsone aggregated_branch_name | ||
shell_command_after: | ||
- git am "$(git format-patch -1 XXXXXX -o ../patches)" | ||
Command line Usage | ||
================== | ||
|