Class: VagrantSymfony::Which

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-symfony/which.rb

Class Method Summary collapse

Class Method Details

.which(cmd) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/vagrant-symfony/which.rb', line 5

def self.which(cmd)
  exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') + [''] : ['']
  ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
    exts.each do |ext|
      exe = File.join(path, "#{cmd}#{ext}")
      return exe if File.executable? exe
    end
  end
  return nil
end