#!/bin/bash -e

main() {
  echo "==> 👢 Bootstrapping"
  bundle install
  brew bundle
  carthage bootstrap --platform macOS --cache-builds

  script/sort
}

main
