From 5eed4e384b94a014e73b0c2cafb9b4c20c34f458 Mon Sep 17 00:00:00 2001 From: finga Date: Mon, 13 Jan 2020 21:34:57 +0100 Subject: [PATCH] remove ~/bin from $PATH --- .zprofile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.zprofile b/.zprofile index 7e3076a..4d743d2 100644 --- a/.zprofile +++ b/.zprofile @@ -24,11 +24,6 @@ if [ -n "$BASH_VERSION" ]; then fi fi -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" -fi - # set PATH so it includes user's private bin if it exists if [ -d "$HOME/.local/bin" ] ; then PATH="$HOME/.local/bin:$PATH"