From 26d3d161544fc02ba5547538f45cde9dc56cdf5b Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sat, 29 Sep 2012 13:45:49 -0400 Subject: [PATCH] Add missing backslashes --- modules/git/functions/git-stash-dropped | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/git/functions/git-stash-dropped b/modules/git/functions/git-stash-dropped index bdba2386..ce3a52b1 100644 --- a/modules/git/functions/git-stash-dropped +++ b/modules/git/functions/git-stash-dropped @@ -5,11 +5,11 @@ # Sorin Ionescu # -git fsck --unreachable 2> /dev/null +git fsck --unreachable 2> /dev/null \ | grep 'commit' \ | awk '{print $3}' \ | git log \ - ${git_log_format_oneline} + ${git_log_format_oneline} \ --extended-regexp \ --grep="${1:-(WIP )?[Oo]n [^:]+:}" \ --merges \