Skip to content

Commit

Permalink
Removed "sudo" and added output to /dev/null for package existence ch…
Browse files Browse the repository at this point in the history
…eck.
  • Loading branch information
jtrobinson3 committed Oct 29, 2014
1 parent cc2396c commit ba80294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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(sudo apt-cache show fuse-utils)
%x(apt-cache show fuse-utils >> /dev/null)
if( $? == 0 ) then
prereqs.push( 'fuse-utils' )
else
Expand Down

0 comments on commit ba80294

Please sign in to comment.