Method: Codebuild::Variables#load_variables

Defined in:
lib/codebuild/variables.rb

#load_variablesObject



3
4
5
6
7
8
9
# File 'lib/codebuild/variables.rb', line 3

def load_variables
  load_variables_file("base")
  load_variables_file(Codebuild.env)
  # Then load type scope variables, so they take higher precedence
  load_variables_file("base", @options[:type])
  load_variables_file(Codebuild.env, @options[:type])
end