cleanup: remove trailing '/' in .profile

This commit is contained in:
swytch 2020-06-14 16:33:00 +02:00
parent c2c902da6e
commit f0a1cb8c8e
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_DATA_HOME="$HOME/.local/share"
## paths
export PATH="$PATH:$(du --exclude ".git" "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export PATH="$PATH:$(du --exclude ".git" "$HOME/.local/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc-2.0"
export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"