@neon-rs/cli 0.1.40 → 0.1.42
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/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -40443,8 +40443,10 @@ class Dist {
|
|
|
40443
40443
|
}
|
|
40444
40444
|
async run() {
|
|
40445
40445
|
const file = this._file || (await this.findArtifact());
|
|
40446
|
+
const out = await this._out;
|
|
40447
|
+
this.log(`output file = ${out}`);
|
|
40446
40448
|
// FIXME: needs all the logic of cargo-cp-artifact (timestamp check, M1 workaround, async, errors)
|
|
40447
|
-
await (0,promises_.copyFile)(file,
|
|
40449
|
+
await (0,promises_.copyFile)(file, out);
|
|
40448
40450
|
}
|
|
40449
40451
|
}
|
|
40450
40452
|
|