From 8d0c33110bb9e85247bfac3ce61ff8c24c5788d0 Mon Sep 17 00:00:00 2001 From: Edelwin Khaelos Date: Sat, 26 Apr 2014 19:49:27 +0200 Subject: [PATCH] fixed a random $ --- plugins/git/git.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index c527c1006..b0d33c51d 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -146,7 +146,7 @@ gpull() gpush() { cd ~/ - [[ -f myrepos ]] || echo -e "warning, you seem to have forgotten to create your list.\n Please run (find -type d -name ".git" > ~/myrepos) and edit your file by hand to select your repos." + [[ -f myrepos ]] || echo -e "warning, you seem to have forgotten to create your list.\n Please run $(find -type d -name ".git" > ~/myrepos) and edit your file by hand to select your repos." for f in $( < myrepos); do cd $(dirname ${f})