Sha256: e3efb40937763d787aaadafb82fe6d7a480e8b26e263110e43de236737e4adf5

Contents?: true

Size: 482 Bytes

Versions: 70

Compression:

Stored size: 482 Bytes

Contents

# frozen_string_literal: true

# tau hg pull
module HgPull
  # Backend method for hg pull.
  def hg_pull
    log.debug 'Pull hg repos'

    return false unless git_lib_prepare_git_workspace

    _hg_pull_hg_pull_repos

    git_lib_push_hg_dirs
  end

  private

  # Pull hg repos.
  def _hg_pull_hg_pull_repos
    cmd_hg_pull_repos = format(
      config.active['cmd_hg_pull_repos'],
      root: config.active['project_root_dir']
    )

    log.info run cmd_hg_pull_repos
  end
end

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
takeltau-0.42.0 lib/takeltau/hg/pull.rb
takeltau-0.41.10 lib/takeltau/hg/pull.rb
takeltau-0.41.9 lib/takeltau/hg/pull.rb
takeltau-0.41.0 lib/takeltau/hg/pull.rb
takeltau-0.40.11 lib/takeltau/hg/pull.rb
takeltau-0.40.9 lib/takeltau/hg/pull.rb
takeltau-0.40.7 lib/takeltau/hg/pull.rb
takeltau-0.40.6 lib/takeltau/hg/pull.rb
takeltau-0.40.4 lib/takeltau/hg/pull.rb
takeltau-0.40.3 lib/takeltau/hg/pull.rb