pinch-dotfiles/salty/base/zsh/files/bashconfig

11 lines
262 B
Text
Raw Permalink Normal View History

#!/usr/bin/env bash
{%- if grains['kernel'] == 'Darwin' -%}
update() {
brew update &&\
brew upgrade &&\
brew cask update &&\
apm update --confirm false &&\
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
}
{%- endif -%}