mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-07 04:46:06 +08:00
Task-number: QTQAINFRA-5573 Change-Id: I481a6d82a6fee2bb849369f98085ccded1ca54a8 Reviewed-by: Matti Paaso <matti.paaso@qt.io>
13 lines
410 B
Bash
Executable File
13 lines
410 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2018 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# Install Git Large File Storage
|
|
|
|
set -ex
|
|
|
|
curl -L https://packagecloud.io/github/git-lfs/gpgkey | sudo apt-key add -
|
|
sudo apt-add-repository 'deb https://packagecloud.io/github/git-lfs/ubuntu/ jammy main'
|
|
sudo apt update
|
|
sudo apt install git-lfs
|