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})