# File lib/smart_proxy_salt/salt_main.rb, line 25 def popen(cmd) # 1.8.7 note: this assumes that cli options are space-separated cmd = cmd.join(' ') unless RUBY_VERSION > '1.8.7' logger.debug("about to execute: #{cmd}") IO.popen(cmd) end