Sha256: 4b7ec2809cdf61fece7a2d108c561d70f3c7f5c6dab62ba0c76a1dc34a3a979b
Contents?: true
Size: 463 Bytes
Versions: 88
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module CLICommands GIT_LFS_VERSION = '2.8.0' 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 end end end end
Version data entries
88 entries across 88 versions & 1 rubygems