Skip to content

Commit 3679385

Browse files
committed
Log which version of CANBridge was downloaded
1 parent 7275913 commit 3679385

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/download-CanBridge.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ try {
2121
downloadCanBridgeArtifact('headers.zip', tempDir),
2222
));
2323

24-
console.log("CANBridge download completed");
2524
console.log("Extracting headers");
2625

2726
const headersZip = new AdmZip(path.join(tempDir, "headers.zip"));
2827

2928
await headersZip.extractAllTo(path.join(externalCompileTimeDepsPath, 'include'), true);
30-
console.log(`Successfully downloaded CANBridge`);
29+
console.log(`Successfully downloaded CANBridge ${canBridgeTag}`);
3130
} catch (e) {
3231
if (axios.isAxiosError(e) && e.request) {
3332
console.error(`Failed to download CANBridge file ${e.request.protocol}//${e.request.host}/${e.request.path}`);

0 commit comments

Comments
 (0)