Browse Source

add charles proxy

Kyle P Davis 8 years ago
parent
commit
f568e5e88e
1 changed files with 9 additions and 0 deletions
  1. 9 0
      gimmes/charles

+ 9 - 0
gimmes/charles

@@ -0,0 +1,9 @@
+#!/bin/bash
+set -o errexit -o pipefail
+if [[ "$OS" = "Darwin" ]]; then
+	if ! [[ -d "$HOME/Applications/Charles.app/" ]]; then
+		brew cask install charles
+	fi
+else
+	echo "TODO: add Charles for Linux!"
+fi