File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,7 @@ function moveRuntimeDeps() {
106106 deps . forEach ( dep => moveRuntimeArtifactsDeps ( path . join ( 'win32-x64' , dep ) , runtimeArtifactsPath . win ) ) ;
107107 } else if ( platform ( ) === 'darwin' ) {
108108 const deps = [ 'libCANBridge.dylib' , 'libwpiHal.dylib' , 'libwpiutil.dylib' ] ;
109- if ( arch ( ) === 'x64' ) {
110- deps . forEach ( dep => moveRuntimeArtifactsDeps ( path . join ( 'darwin-x64' , dep ) , runtimeArtifactsPath . osx ) ) ;
111- }
112- if ( arch ( ) === 'arm64' ) {
113- deps . forEach ( dep => moveRuntimeArtifactsDeps ( path . join ( 'darwin-arm64' , dep ) , runtimeArtifactsPath . osxArm ) ) ;
114- }
109+ deps . forEach ( dep => moveRuntimeArtifactsDeps ( path . join ( 'darwin-x64' , dep ) , runtimeArtifactsPath . osx ) ) ;
115110 } else if ( platform ( ) === 'linux' ) {
116111 const deps = [ 'libCANBridge.so' , 'libwpiHal.so' , 'libwpiutil.so' ] ;
117112 if ( arch ( ) === 'x64' ) {
You can’t perform that action at this time.
0 commit comments