dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 2aeeb90e31c1ef0581831c7f3b75a66902f9c82b
parent d9dc19642a4f91c1fe9ec07c15104d6947654147
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat, 11 Mar 2017 18:16:28 -0800

Move depot_tools and flutter from .tools to .paths

Diffstat:
M.paths | 6++++++
M.tools | 6------
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.paths b/.paths @@ -20,6 +20,12 @@ path_append() { fi } +# Chromium depot_tools +path_prepend "$HOME/src/depot_tools" + +# Flutter SDK +path_prepend "$HOME/src/flutter/flutter/bin" + # Push /usr/local/bin to the front of PATH path_prepend "/usr/local/bin" diff --git a/.tools b/.tools @@ -20,9 +20,3 @@ fi if [[ -f ~/.nvm/nvm.sh ]]; then . ~/.nvm/nvm.sh fi - -# Chromium depot_tools -path_prepend "$HOME/src/depot_tools" - -# Flutter SDK -path_prepend "$HOME/src/flutter/flutter/bin"