diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index 8326a987..d4aae714 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -224,7 +224,11 @@ async function bundleInstall(brews, casks, caskMap) { if (cask.indexOf('/') !== -1) { lines.push(`tap "${cask.substring(0, cask.lastIndexOf('/'))}"`) } - lines.push(`cask "${cask}"`) + if (cask.indexOf(' --no-quarantine') === -1) { + lines.push(`cask "${cask}"`) + } else { + lines.push(`cask "${cask.replace(' --no-quarantine', '')}", args: { "no-quarantine": true }`) + } } brews.length && log(`Adding following brews to Brewfile for installation: ${brews.join(' ')}`) for (const brew of brews) { diff --git a/scripts/software.yml.backup b/scripts/software.yml.backup index 45cdee37..38e4a047 100644 --- a/scripts/software.yml.backup +++ b/scripts/software.yml.backup @@ -12657,10 +12657,10 @@ softwarePackages: if ! pip3 list | grep certifi > /dev/null; then if command -v brew > /dev/null; then logg info 'Ensuring Python certifi is installed via Homebrew' - brew install --quiet python-certifi + brew install --quiet certifi else logg info 'Ensuring certifi is installed globally for Python 3' - pip3 install certifibrew link --overwrite python-certifi + pip3 install certifi fi fi diff --git a/software.yml b/software.yml index 4f44922f..f8e9b624 100644 --- a/software.yml +++ b/software.yml @@ -12883,10 +12883,10 @@ softwarePackages: if ! pip3 list | grep certifi > /dev/null; then if command -v brew > /dev/null; then logg info 'Ensuring Python certifi is installed via Homebrew' - brew install --quiet python-certifi + brew install --quiet certifi else logg info 'Ensuring certifi is installed globally for Python 3' - pip3 install certifibrew link --overwrite python-certifi + pip3 install certifi fi fi ### Copy CloudFlare PEM file to Python 3 location