From 0daeceff9fab24b9dba05db10185eee529e4d374 Mon Sep 17 00:00:00 2001 From: Peter Cardenas <16930781+PeterCardenas@users.noreply.github.com> Date: Sun, 16 Mar 2025 12:35:42 -0700 Subject: [PATCH] fix: add macports note for installing gnutar --- src/commands/download/firefox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/download/firefox.ts b/src/commands/download/firefox.ts index d04d19e..bb79aa6 100644 --- a/src/commands/download/firefox.ts +++ b/src/commands/download/firefox.ts @@ -62,7 +62,7 @@ async function unpackFirefoxSource(name: string): Promise { // 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` ) }