File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ async function win32() {
99
99
if ( e . code === 'EEXIST' ) return ;
100
100
else throw e ;
101
101
} ) ;
102
-
102
+
103
103
const ffmpegFilename = 'ffmpeg-4.x-win64-shared' ;
104
104
await access ( `ffmpeg/${ ffmpegFilename } ` , fs . constants . R_OK ) . catch ( async ( ) => {
105
105
const html = await getHTML ( 'https://github.com/BtbN/FFmpeg-Builds/wiki/Latest' , 'latest autobuilds' ) ;
@@ -180,7 +180,7 @@ async function darwin() {
180
180
console . log ( 'Checking for FFmpeg dependencies via HomeBrew.' ) ;
181
181
let output ;
182
182
let returnMessage ;
183
-
183
+
184
184
try {
185
185
output = await exec ( 'brew list ffmpeg' ) ;
186
186
returnMessage = 'FFmpeg already present via Homebrew.' ;
@@ -218,12 +218,7 @@ case 'win32':
218
218
}
219
219
break ;
220
220
case 'linux' :
221
- if ( os . arch ( ) != 'x64' ) {
222
- console . error ( 'Only 64-bit platforms are supported.' ) ;
223
- process . exit ( 1 ) ;
224
- } else {
225
- linux ( ) ;
226
- }
221
+ linux ( ) ;
227
222
break ;
228
223
case 'darwin' :
229
224
if ( os . arch ( ) != 'x64' ) {
You can’t perform that action at this time.
0 commit comments