We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7275913 commit 3679385Copy full SHA for 3679385
scripts/download-CanBridge.mjs
@@ -21,13 +21,12 @@ try {
21
downloadCanBridgeArtifact('headers.zip', tempDir),
22
));
23
24
- console.log("CANBridge download completed");
25
console.log("Extracting headers");
26
27
const headersZip = new AdmZip(path.join(tempDir, "headers.zip"));
28
29
await headersZip.extractAllTo(path.join(externalCompileTimeDepsPath, 'include'), true);
30
- console.log(`Successfully downloaded CANBridge`);
+ console.log(`Successfully downloaded CANBridge ${canBridgeTag}`);
31
} catch (e) {
32
if (axios.isAxiosError(e) && e.request) {
33
console.error(`Failed to download CANBridge file ${e.request.protocol}//${e.request.host}/${e.request.path}`);
0 commit comments