Method: OnePass::Application#check_for_dependencies

Defined in:
lib/OnePass/application.rb

#check_for_dependenciesObject



19
20
21
22
23
24
25
# File 'lib/OnePass/application.rb', line 19

def check_for_dependencies
  unless installed? 'pinentry --version'
    puts 'Please install the `pinentry` program.'
    puts '  on macOS, we recommend using Homebrew: `brew install pinentry`.'
    exit 127
  end
end