mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 22:25:24 +00:00
Fixed this.props assignment problem
This commit is contained in:
3
index.js
3
index.js
@@ -388,7 +388,8 @@ class Pass {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.model = path.resolve(options.model) + (!!options.model && !path.extname(options.model) ? ".pass" : "");
|
this.model = path.resolve(options.model) + (!!options.model && !path.extname(options.model) ? ".pass" : "");
|
||||||
this.props = this._filterOptions(options.overrides);
|
|
||||||
|
Object.assign(this.props, this._filterOptions(options.overrides));
|
||||||
|
|
||||||
let certPaths = Object.keys(options.certificates)
|
let certPaths = Object.keys(options.certificates)
|
||||||
.filter(v => v !== "dir")
|
.filter(v => v !== "dir")
|
||||||
|
|||||||
Reference in New Issue
Block a user