From 63dd9ad7b48625dd06845eaa4125bb9d250ebb3e Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Wed, 8 Feb 2017 21:56:26 -0600 Subject: [PATCH] Fix PATH nonsense --- dotprofile.org | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dotprofile.org b/dotprofile.org index d602c37..cd90f88 100644 --- a/dotprofile.org +++ b/dotprofile.org @@ -37,11 +37,6 @@ _host=${_host:=${_uname_n}} #+BEGIN_SRC sh :tangle (when (eq haskell-p t) "tmp/.profile") PATH="${PATH}:${HOME}/.cabal/bin" #+END_SRC -** General -#+BEGIN_SRC sh :tangle "tmp/.profile" -PATH="${PATH}:${HOME}/bin:${HOME}/.local/bin" -export PATH -#+END_SRC * Functions ** General @@ -381,3 +376,9 @@ alias m=mosh #+BEGIN_SRC sh :tangle (when (eq tmux-p t) "tmp/.profile") alias tl='tmux ls' #+END_SRC + +* Final PATH +#+BEGIN_SRC sh :tangle "tmp/.profile" +PATH="${PATH}:${HOME}/bin:${HOME}/.local/bin" +export PATH +#+END_SRC