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.46.9 lib/takeltau/hg/pull.rb
takeltau-0.46.8 lib/takeltau/hg/pull.rb
takeltau-0.46.5 lib/takeltau/hg/pull.rb
takeltau-0.46.1 lib/takeltau/hg/pull.rb
takeltau-0.46.0 lib/takeltau/hg/pull.rb
takeltau-0.45.27 lib/takeltau/hg/pull.rb
takeltau-0.45.26 lib/takeltau/hg/pull.rb
takeltau-0.45.24 lib/takeltau/hg/pull.rb
takeltau-0.45.23 lib/takeltau/hg/pull.rb
takeltau-0.45.22 lib/takeltau/hg/pull.rb
takeltau-0.45.21 lib/takeltau/hg/pull.rb
takeltau-0.45.19 lib/takeltau/hg/pull.rb
takeltau-0.45.17 lib/takeltau/hg/pull.rb
takeltau-0.45.16 lib/takeltau/hg/pull.rb
takeltau-0.45.14 lib/takeltau/hg/pull.rb
takeltau-0.45.13 lib/takeltau/hg/pull.rb
takeltau-0.45.12 lib/takeltau/hg/pull.rb
takeltau-0.45.11 lib/takeltau/hg/pull.rb
takeltau-0.45.10 lib/takeltau/hg/pull.rb
takeltau-0.45.9 lib/takeltau/hg/pull.rb