commit e8f413426bca8266ce75274bee8714021dbc99be (patch)
parent b220bb1e2d69a31169ca969d438580cee12697d1
Author: Alex Karle <alex@karle.co>
Date: Mon, 18 Mar 2019 23:48:57 -0400
[bash] remove bash_path from git
This file usually varies system-to-system and does not require much
updating or really need version control (in its current state).
Taking it out of the repo for now to remove cruft / make managing
multiple machines easier.
Diffstat:
1 file changed, 0 insertions(+), 11 deletions(-)
diff --git a/bash/bash_path b/bash/bash_path
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-
-# Add Homebrew `/usr/local/bin` and User `~/bin` to the `$PATH`
-PATH=/usr/local/bin:$PATH
-PATH=$HOME/bin:$PATH
-
-# Add cargo to path
-PATH="$HOME/.cargo/bin:$PATH"
-
-# Export it!
-export PATH