From 371da505f8599c33ac5e8a1bda7bd78b4455e9b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 9 Sep 2017 14:39:39 +0200 Subject: [PATCH] zsh: Fix PATH --- zsh/zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zprofile b/zsh/zprofile index 1d7cf51..2f55a27 100644 --- a/zsh/zprofile +++ b/zsh/zprofile @@ -9,7 +9,7 @@ _path=("$HOME/bin" "/usr/games") PATH="" -for part in ${_path} ; do +for part in ${_path[@]} ; do PATH="$PATH:${part}" done PATH="${PATH#:}"