firefox 189 B

1234567
  1. #!/bin/bash
  2. set -o errexit -o pipefail
  3. if [[ "$OS" = "Darwin" ]]; then
  4. [[ -d "$HOME/Applications/Firefox.app" ]] || brew cask install firefox
  5. else
  6. has firefox || gimme_pkg firefox
  7. fi