nodalis-compiler 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/programmers/MTIProgrammer.js +2 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@ export class MTIProgrammer extends Programmer {
|
|
|
32
32
|
async program() {
|
|
33
33
|
let result = true;
|
|
34
34
|
try {
|
|
35
|
-
runMticp([
|
|
35
|
+
await runMticp([
|
|
36
36
|
"action=sendxml",
|
|
37
37
|
`src=${this.options.source}`,
|
|
38
38
|
`dst=${this.options.destination}`
|
|
@@ -43,6 +43,7 @@ export class MTIProgrammer extends Programmer {
|
|
|
43
43
|
})
|
|
44
44
|
.catch(err => {
|
|
45
45
|
// Print any error from the binary and exit non-zero
|
|
46
|
+
result = false;
|
|
46
47
|
console.error(err.message || err);
|
|
47
48
|
});
|
|
48
49
|
}
|