MOD: fixed openssl, default now overrides apples

This commit is contained in:
JohnE 2017-03-31 09:18:32 -07:00
parent f2b0e240cd
commit 2037eeab55
4 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# brew openssl # brew openssl
# openssl_ -> /usr/local/Cellar/openssl/1.0.2e_1/bin/openssl # openssl_ -> /usr/local/Cellar/openssl/1.0.2e_1/bin/openssl
export OSSL=/usr/local/Cellar/openssl/openssl export OSSL=/usr/local/opt/openssl/bin/openssl
#openssl #openssl
alias ossl=$OSSL alias ossl=$OSSL

6
.bash_override Normal file
View File

@ -0,0 +1,6 @@
#
# these will override any other setting
#
# override Apple's default (old) openssl
export PATH="/usr/local/opt/openssl/bin:$PATH"

View File

@ -10,6 +10,7 @@ source ~/.bash_tools
source ~/.bash_dev source ~/.bash_dev
source ~/.bash_android source ~/.bash_android
source ~/.bash_python source ~/.bash_python
source ~/.bash_override
# prompt # prompt
PS1="[\u@\h:\W] " PS1="[\u@\h:\W] "

View File

@ -13,10 +13,6 @@ venv.ls () {
ll $SRC_DIRECTORY ll $SRC_DIRECTORY
} }
# django
alias djm="python ./manage.py"
alias dja="django-admin.py"
# python interpreter w/auto complete # python interpreter w/auto complete
# pip install bpython # pip install bpython
bbpython () { bbpython () {
@ -24,6 +20,10 @@ bbpython () {
bpython bpython
} }
# django
# alias djm="python ./manage.py"
# alias dja="django-admin.py"
# virtualenv # virtualenv
# export WORKON_HOME=$HOME/dev/virtenvs # export WORKON_HOME=$HOME/dev/virtenvs
# source /usr/local/bin/virtualenvwrapper.sh # source /usr/local/bin/virtualenvwrapper.sh