From 63f8f12b6c51f761cf30e6f3fe13abb550d647fe Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 18 Dec 2014 09:31:22 -0800 Subject: [PATCH] add -i to cider, icdiff growl-fork and terminal notifier. --- dotfiles/cider/bootstrap.json | 3 +++ dotfiles/lib/shellrc/osx.sh | 2 ++ tasks/osx.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dotfiles/cider/bootstrap.json b/dotfiles/cider/bootstrap.json index 5879ecf7..9b4944dd 100644 --- a/dotfiles/cider/bootstrap.json +++ b/dotfiles/cider/bootstrap.json @@ -10,6 +10,7 @@ "flux", "google-chrome", "google-hangouts", + "growl-fork", "growlnotify", "heroku-toolbelt", "iterm2", @@ -66,6 +67,7 @@ "heroku-toolbelt", "htop-osx", "hub", + "icdiff", "icu4c", "intltool", "ispell", @@ -114,6 +116,7 @@ "sleuthkit", "sqlite", "subversion", + "terminal-notifier", "the_silver_searcher", "tig", "tmux", diff --git a/dotfiles/lib/shellrc/osx.sh b/dotfiles/lib/shellrc/osx.sh index a5dacbe9..617cd31b 100644 --- a/dotfiles/lib/shellrc/osx.sh +++ b/dotfiles/lib/shellrc/osx.sh @@ -1,3 +1,5 @@ +is_osx || return + function set_global_osx_ssh_port { set_osx_ssh_port $1 /System/Library/LaunchDaemons/ssh.plist } diff --git a/tasks/osx.py b/tasks/osx.py index ab23c965..7eca89f7 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -44,7 +44,7 @@ def cider(ctx): ctx.run('brew install caskroom/cask/brew-cask') if not util.command_exists('cider'): ctx.run('sudo pip install cider') - ctx.run('cider restore') + ctx.run('cider restore -i') @ctask