From 26807a414fd951dbf10fb5cbb23b137ddc9b143f Mon Sep 17 00:00:00 2001 From: James Robinson Date: Wed, 29 Oct 2014 10:51:46 -0400 Subject: [PATCH] Fixed output to /dev/null --- recipes/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/install.rb b/recipes/install.rb index ae48dab..c964eb1 100644 --- a/recipes/install.rb +++ b/recipes/install.rb @@ -21,7 +21,7 @@ ) # As of Ubuntu 14.04 "fuse-utils" has been merged into package "fuse" # so try to install both (auto-installed by fuse-utils in older) - %x(apt-cache show fuse-utils >> /dev/null) + %x(apt-cache show fuse-utils > /dev/null) if( $? == 0 ) then prereqs.push( 'fuse-utils' ) else