Open jamesmagoo opened 1 year ago
Been looking into the @kickscondor/granax download-tbb.js createHref function (below)
function createHref(v) {
const link = `https://dist.torproject.org/torbrowser/${v}`;
switch (platform) {
case 'win32':
return `${link}/torbrowser-install-${v}_en-US.exe`;
case 'darwin':
return `${link}/TorBrowser-${v}-osx64_en-US.dmg`;
case 'android':
case 'linux':
return os.arch() === 'x64'
? `${link}/tor-browser-linux64-${v}_en-US.tar.xz`
: `${link}/tor-browser-linux32-${v}_en-US.tar.xz`
default:
throw new Error(`Unsupported platform "${platform}"`);
}
}
seems that the URL formats for .dmg (image below) have changed on https://dist.torproject.org/torbrowser and this is causing this error..
Desktop (please complete the following information):
Describe the bug Cannot install the dependencies using
npm install
on Macbook due to following error:MacOS Monterey v12.3