Method: BuildTool::ModuleActions::Reconfigure#execute

Defined in:
lib/build-tool/command_actions.rb

#executeObject


205
206
207
208
209
210
211
# File 'lib/build-tool/command_actions.rb', line 205

def execute()
    logger.info "Reconfiguring"
    if !$noop and !@module.vcs_required.checkedout?
        raise ConfigurationError, "Module is not checked out. Enable updating."
    end
    @module.build_system_required.reconfigure
end