From c841651546c132b55271ea3f2a73c770ef3ac797 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 19 Jul 2018 22:45:01 +0100 Subject: [PATCH] Remove unused stuff --- shell/docker.sh | 3 --- shell/env.sh | 12 ------------ 2 files changed, 15 deletions(-) diff --git a/shell/docker.sh b/shell/docker.sh index b036bf7..2c93173 100644 --- a/shell/docker.sh +++ b/shell/docker.sh @@ -6,9 +6,6 @@ alias d="docker" alias dc="docker-compose" alias co="docker-compose" -# alias redis-cli="docker run -it --net=host --rm redis redis-cli" -# alias mysql="docker run -it --net=host --rm mysql mysql" - docker_remove_exited () { docker rm $(docker ps -f="status=exited" -q) } diff --git a/shell/env.sh b/shell/env.sh index 7258139..a4504a2 100644 --- a/shell/env.sh +++ b/shell/env.sh @@ -10,18 +10,6 @@ export GEM_EDITOR="mate" export LC_ALL="en_US.UTF-8" export LANG="en_US.UTF-8" -# GCC 4.2 via Homebrew -# export CC=/usr/local/bin/gcc-4.2 - -# Support /opt install of zsh -if [ -d "/opt/zsh/bin" ]; then - path_prepend "/opt/zsh/bin" -fi - -# Android SDK -export ANDROID_SDK_ROOT="/usr/local/Cellar/android-sdk/r20.0.1" -export ANDROID_HOME="/usr/local/opt/android-sdk" - # ensure bin and sbin paths from /usr/local are in PATH path_add_after "/usr/local/sbin" "/usr/local/bin"