Update .zprofile (#758)

Remove trailing slash from local bin directories in PATH
This commit is contained in:
jamazi
2020-07-13 14:49:53 +03:00
committed by GitHub
parent 72926c0c44
commit ebfaf811ac

View File

@@ -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"