blob: 7e21987d65316ca17090753246f52e3661af3589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env bash
macos_update_path () {
new_path=$1
[ -d $new_path ] && export PATH=$new_path:$PATH
}
macos_update_path /usr/local/opt/openjdk/bin
macos_update_path /usr/local/opt/ruby/bin
macos_update_path /usr/local/opt/llvm/bin
export BROWSER='open'
alias bug='brew upgrade --greedy'
if [[ $(spctl --status) == 'assessments enabled' ]]; then
echo 'Software installment is limited again. Password is required to remove the limit.'
sudo spctl --master-disable
fi
|