class Autoproj::CLI::SwitchConfig
Public Instance Methods
run(args, options = Hash.new)
click to toggle source
# File lib/autoproj/cli/switch_config.rb, line 10 def run(args, options = Hash.new) if !File.directory?(ws.config_dir) raise CLIInvalidArguments, "there's no autoproj/ directory in this workspace, use autoproj bootstrap to check out one" elsif Dir.pwd.start_with?(ws.remotes_dir) || Dir.pwd.start_with?(ws.config_dir) raise CLIInvalidArguments, "you cannot run autoproj switch-config from autoproj's configuration directory or one of its subdirectories" end ws.load_config ws.setup_os_package_installer # We must switch to the root dir first, as it is required by the # configuration switch code. This is acceptable as long as we # quit just after the switch switcher = Ops::MainConfigSwitcher.new(ws) if switcher.switch_config(*args) updater = Update.new(ws) updater.run([], config: true) end end