From ebfaf811ac83d31433a6a06305289c5b0fd61967 Mon Sep 17 00:00:00 2001 From: jamazi <31401744+jamazi@users.noreply.github.com> Date: Mon, 13 Jul 2020 14:49:53 +0300 Subject: [PATCH] Update .zprofile (#758) Remove trailing slash from local bin directories in PATH --- .zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zprofile b/.zprofile index 53161ed..2d2f367 100644 --- a/.zprofile +++ b/.zprofile @@ -6,7 +6,7 @@ # to clean up. # Adds `~/.local/bin` to $PATH -export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | paste -sd ':')" +export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | paste -sd ':')" # Default programs: export EDITOR="nvim"