Skip to content

Commit

Permalink
Streampunk#85 Add arm64 to supported linux platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptorian committed Feb 28, 2022
1 parent 57bfdf3 commit e3a099c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_ffmpeg.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ case 'win32':
}
break;
case 'linux':
if (os.arch() != 'x64') {
if (os.arch() != 'x64' && os.arch() != 'arm64') {
console.error('Only 64-bit platforms are supported.');
process.exit(1);
} else {
Expand Down

0 comments on commit e3a099c

Please sign in to comment.