aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/bash_wrapper.rb
blob: b93a080ff3d9f4a098b8d072c68970f429510474 (plain)
1
2
3
4
5
6
7
module Keyringer
  class BashWrapper
    def execute
      exec("keyringer #{$keyring} #{$action} " + $args.join(' '))
    end
  end
end