From 6b8ea0b86ac3d03e879264b1a0e099a6eeae0991 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 19 Oct 2021 22:37:08 -0700 Subject: [PATCH] tools/setup: install git-lfs from standard apt source old-commit-hash: 76a87514975283722172c30d53e581c2f6815026 --- tools/ubuntu_setup.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/ubuntu_setup.sh b/tools/ubuntu_setup.sh index c15218ade6..28452760f7 100755 --- a/tools/ubuntu_setup.sh +++ b/tools/ubuntu_setup.sh @@ -14,6 +14,7 @@ sudo apt-get update && sudo apt-get install -y --no-install-recommends \ curl \ ffmpeg \ git \ + git-lfs \ libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libavresample-dev libavfilter-dev \ libarchive-dev \ libbz2-dev \ @@ -59,12 +60,6 @@ sudo apt-get update && sudo apt-get install -y --no-install-recommends \ libqt5x11extras5-dev \ libreadline-dev -# install git lfs -if ! command -v "git-lfs" > /dev/null 2>&1; then - curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash - sudo apt-get install git-lfs -fi - # install pyenv if ! command -v "pyenv" > /dev/null 2>&1; then curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash