From ecf28bd046a6fd5a65baf8c68d6140a6166e8218 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Tue, 9 Mar 2021 21:47:42 +0100 Subject: [PATCH] disable adding a repo for git-lfs --- utils.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils.sh b/utils.sh index a0385c7..481c75f 100755 --- a/utils.sh +++ b/utils.sh @@ -167,7 +167,8 @@ rebuild_base_containers() lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get update" lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes wget curl" # Install Git LFS, git comes pre installed with ubuntu image. - lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash" + # Disable this line because we don't need to add a new repo to have git-lfs + #lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash" lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "apt-get install --assume-yes git-lfs" # Install gitlab-runner binary since we need for cache/artifacts. lxc exec "$base_image_to_rebuild-tmp" -- /bin/bash -c "curl -s https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | bash"