module Gitlab::QA::Scenario::CLICommands

Constants

GIT_LFS_VERSION

Public Class Methods

git_lfs_install_commands() click to toggle source
# File lib/gitlab/qa/scenario/cli_commands.rb, line 7
def self.git_lfs_install_commands
  [
    "cd /tmp ; curl -qsL https://github.com/git-lfs/git-lfs/releases/download/v#{GIT_LFS_VERSION}/git-lfs-linux-amd64-v#{GIT_LFS_VERSION}.tar.gz | tar xzvf -",
    'cp /tmp/git-lfs /usr/local/bin'
  ].freeze
end