From c958dddd4c81647078f9d754b802ba65e2cff86c Mon Sep 17 00:00:00 2001 From: Gordon Fontenot Date: Fri, 27 Mar 2015 14:39:22 -0400 Subject: [PATCH] Add bin/setup script This script will: 1. Install Carthage if it isn't already installed 2. run `carthage bootstrap` to install the dependencies --- bin/setup | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/setup diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..831bb02 --- /dev/null +++ b/bin/setup @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +brew install carthage 2> /dev/null +carthage bootstrap