From 6d50997fff50fe34d0e4978afe2abc69d572414b Mon Sep 17 00:00:00 2001 From: Markus Braun Date: Tue, 5 Jul 2011 12:49:45 +0200 Subject: [PATCH] Use '/bin/sh' instead of 'sh' as shell --- plugin/gnupg.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gnupg.vim b/plugin/gnupg.vim index 61fae04..38cf471 100644 --- a/plugin/gnupg.vim +++ b/plugin/gnupg.vim @@ -240,7 +240,7 @@ function s:GPGInit() if (has("unix")) " unix specific settings let s:shellredir = &shellredir - let s:shell = 'sh' + let s:shell = '/bin/sh' let s:stderrredirnull = '2>/dev/null' let s:GPGCommand = "LANG=C LC_ALL=C " . s:GPGCommand else