Merge pull request #16 from PeterCardenas/add-macports-note

fix: add macports note for installing gnutar
This commit is contained in:
mr. m 2025-03-30 11:15:53 +02:00 committed by GitHub
commit 9f5996b461
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
if (!commandExistsSync('gtar')) {
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`
)
}