isomorfeus-puppetmaster 0.3.3 → 0.3.4
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10a87de942e9bcc619c6d461caa56ea8d923a94731076a76226b4da6de3768af
|
|
4
|
+
data.tar.gz: cc0562db88cf473d5fcfa23ce4330d8749ad9f10f2f5984441da7938bef61c4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7b2af3a3eb088265cec97995ea703cfaa86af296f35100fa980702765dd5c0a2862831dd5ee0a470a5c28e1b7d28ad0007aa4466a19d0991fc4ff48204296bc
|
|
7
|
+
data.tar.gz: 1595c0d69b966908e81a0a440e583f6e938ad00b7070188eb0bf4156896f403508b927b459a1f0006c56c8a7da9428a15b992171c918a0e8286ed36c6ad06f8d
|
|
@@ -320,8 +320,10 @@ module Isomorfeus
|
|
|
320
320
|
return [null, {name: err.name, message: err.message, stack: err.stack}];
|
|
321
321
|
}
|
|
322
322
|
}, #{args});
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
if (result) {
|
|
324
|
+
LastResult = result[0];
|
|
325
|
+
LastErr = result[1];
|
|
326
|
+
}
|
|
325
327
|
JAVASCRIPT
|
|
326
328
|
end
|
|
327
329
|
|
|
@@ -337,8 +339,10 @@ module Isomorfeus
|
|
|
337
339
|
return [null, {name: err.name, message: err.message, stack: err.stack}];
|
|
338
340
|
}
|
|
339
341
|
}, #{args});
|
|
340
|
-
|
|
341
|
-
|
|
342
|
+
if (result) {
|
|
343
|
+
LastResult = result[0];
|
|
344
|
+
LastErr = result[1];
|
|
345
|
+
}
|
|
342
346
|
JAVASCRIPT
|
|
343
347
|
end
|
|
344
348
|
|