class Solano::Scripts

Public Class Methods

prepend_script_path() click to toggle source
# File lib/solano/script.rb, line 6
def self.prepend_script_path
  path = ENV['PATH'].split(':')
  path.unshift(Config::EMBEDDED_SCRIPT_PATH)
  ENV['PATH'] = path.join(':')
end