Skip to content

Commit

Permalink
🐛 Fix brew installs for canary/nightly/beta versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wingy3181 committed Aug 21, 2024
1 parent d0047b8 commit daa4bd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/os/installs/macos/browsers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ brew_install_with_confirmation "Brave Browser" "brave-browser" "--cask"
printf "\n"

brew_install_with_confirmation "Chrome" "google-chrome" "--cask"
brew_install_with_confirmation "Chrome Canary" "google-chrome@canary" "--cask" "homebrew/cask-versions"
brew_install_with_confirmation "Chrome Canary" "google-chrome@canary" "--cask"
brew_install_with_confirmation "Chromium" "chromium" "--cask --no-quarantine"

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

printf "\n"

brew_install_with_confirmation "Firefox" "firefox" "--cask"
brew_install_with_confirmation "Firefox Developer" "firefox@developer-edition" "--cask" "homebrew/cask-versions"
brew_install_with_confirmation "Firefox Nightly" "firefox@nightly" "--cask" "homebrew/cask-versions"
brew_install_with_confirmation "Firefox Developer" "firefox@developer-edition" "--cask"
brew_install_with_confirmation "Firefox Nightly" "firefox@nightly" "--cask"

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Expand All @@ -49,7 +49,7 @@ brew_install_with_confirmation "Microsoft Edge" "microsoft-edge" "--cask"

if is_supported_version "$(get_os_version)" "10.11.4"; then
printf "\n"
brew_install_with_confirmation "Safari Technology Preview" "safari-technology-preview" "--cask" "homebrew/cask-versions"
brew_install_with_confirmation "Safari Technology Preview" "safari-technology-preview" "--cask"
fi

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Expand Down
2 changes: 1 addition & 1 deletion src/os/installs/macos/gaming.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")" \

print_in_purple "\n Gaming\n\n"

brew_install_with_confirmation "Dolphin Beta (GameCube Emulator)" "dolphin@beta" "--cask" "homebrew/cask-versions"
brew_install_with_confirmation "Dolphin Beta (GameCube Emulator)" "dolphin@beta" "--cask"
brew_install_with_confirmation "SideQuest" "sidequest" "--cask"
brew_install_with_confirmation "VR Virtual Desktop Streamer" "virtual-desktop-streamer" "--cask"

Expand Down

0 comments on commit daa4bd5

Please sign in to comment.