Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cargo-cp-artifact

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cargo-cp-artifact - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json
{
"name": "cargo-cp-artifact",
"version": "0.1.2",
"version": "0.1.3",
"description": "Copies compiler artifacts emitted by rustc by parsing Cargo metadata",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -117,3 +117,9 @@ "use strict";

await mkdir(dirname(outputFile), { recursive: true });
const outputDir = dirname(outputFile);
// Don't try to create the current directory
if (outputDir) {
await mkdir(outputDir, { recursive: true });
}
await copyFile(filename, outputFile);

@@ -120,0 +126,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc