From 6414dae41aa409673872f603ba6b542895614e7d Mon Sep 17 00:00:00 2001 From: Jiajie Chen Date: Thu, 19 Aug 2021 11:31:21 +0800 Subject: [PATCH] Add bullseye and version 13 for llvm, fixing #131 --- llvm-apt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm-apt.sh b/llvm-apt.sh index 68f9a6a..8356b69 100755 --- a/llvm-apt.sh +++ b/llvm-apt.sh @@ -10,9 +10,9 @@ BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://apt.llvm.org"} export REPO_SIZE_FILE=/tmp/reposize.$RANDOM -for os in "xenial" "bionic" "focal" "stretch" "buster"; do +for os in "xenial" "bionic" "focal" "stretch" "buster" "bullseye"; do prefix=llvm-toolchain-$os - "$apt_sync" --delete "$BASE_URL/$os" $prefix,$prefix-9,$prefix-10,$prefix-11,$prefix-12 main amd64 "$BASE_PATH/$os" + "$apt_sync" --delete "$BASE_URL/$os" $prefix,$prefix-9,$prefix-10,$prefix-11,$prefix-12,$prefix-13 main amd64 "$BASE_PATH/$os" done echo "APT finished"