fix: add macports note for installing gnutar

This commit is contained in:
Peter Cardenas 2025-03-16 12:35:42 -07:00
parent fd234005ec
commit 0daeceff9f
No known key found for this signature in database
GPG key ID: 3F72404517E2E286

View file

@ -62,7 +62,7 @@ async function unpackFirefoxSource(name: string): Promise<void> {
// check for it and ask for the user to install it if necessary // check for it and ask for the user to install it if necessary
if (!commandExistsSync('gtar')) { if (!commandExistsSync('gtar')) {
throw new Error( throw new Error(
`GNU Tar is required to extract Firefox's source on MacOS. Please install it using the command |brew install gnu-tar| and try again` `GNU Tar is required to extract Firefox's source on MacOS. Please install it using the command |brew install gnu-tar| or |sudo port install gnutar| and try again`
) )
} }