1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/installer/appbundle/MacOS/brew.sh
2016-09-19 14:17:09 +08:00

17 lines
490 B
Bash
Executable File

#!/bin/sh
# brew requires Command Line Tools for Xcode
xcode-select --print-path || sudo xcode-select --install
# install brew if necessary
brew info || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# update brew package index and update all packages
brew update && brew upgrade
# install latest JDK
brew cask install java --force
# install FileBot bundle to ~/Applications
brew cask install filebot --force --appdir=~/Applications