File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import * as path from "path";
3
3
import axios from 'axios' ;
4
4
import AdmZip from 'adm-zip' ;
5
5
6
- const canBridgeTag = "v2.4.0 " ;
6
+ const canBridgeTag = "v2.4.1 " ;
7
7
const canBridgeReleaseAssetUrlPrefix = `https://github.com/REVrobotics/CANBridge/releases/download/${ canBridgeTag } ` ;
8
8
9
9
const externalCompileTimeDepsPath = 'externalCompileTimeDeps' ;
@@ -21,13 +21,12 @@ try {
21
21
downloadCanBridgeArtifact ( 'headers.zip' , tempDir ) ,
22
22
) ) ;
23
23
24
- console . log ( "CANBridge download completed" ) ;
25
24
console . log ( "Extracting headers" ) ;
26
25
27
26
const headersZip = new AdmZip ( path . join ( tempDir , "headers.zip" ) ) ;
28
27
29
28
await headersZip . extractAllTo ( path . join ( externalCompileTimeDepsPath , 'include' ) , true ) ;
30
- console . log ( `Successfully downloaded CANBridge` ) ;
29
+ console . log ( `Successfully downloaded CANBridge ${ canBridgeTag } ` ) ;
31
30
} catch ( e ) {
32
31
if ( axios . isAxiosError ( e ) && e . request ) {
33
32
console . error ( `Failed to download CANBridge file ${ e . request . protocol } //${ e . request . host } /${ e . request . path } ` ) ;
You can’t perform that action at this time.
0 commit comments