We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012e3f0 commit 0aca4caCopy full SHA for 0aca4ca
2 files changed
CHANGELOG.md
@@ -4,6 +4,8 @@
4
5
### Fixes
6
7
+- [Issue #28] - App isn't merged without -f
8
+
9
## [0.2.1] - 2018-03-29
10
11
### Additions
lib/chainlinks/builder.js
@@ -82,7 +82,14 @@ let Builder = function() {
82
83
}
84
else {
85
- accept(payload);
86
+ // Merge build
87
+ if (this._mergeCmd && this.binCmd(this._mergeCmd)) {
88
+ accept(payload);
89
+ }
90
+ else {
91
+ reject("Could not merge");
92
93
94
95
});
0 commit comments