Skip to content

Commit

Permalink
Remove ubuntu bionic from some scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Shengqi Chen <[email protected]>
  • Loading branch information
Harry-Chen committed Apr 25, 2024
1 parent f05c3d6 commit df3e175
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion erlang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DEBIAN_PATH="${BASE_PATH}/debian"
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM

# generate codenames for repos
ubuntu_os=(bionic focal jammy)
ubuntu_os=(focal jammy)
debian_os=(bullseye buster)
deb_suffixes=(
mongooseim-5
Expand Down
2 changes: 1 addition & 1 deletion kde-neon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ APT_PATH="${BASE_PATH}/user"
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM

# =================== APT repos ===============================
"$apt_sync" --delete "${BASE_URL}/user" jammy,focal,bionic main dep11,cnf,all,amd64,i386 "${BASE_PATH}/user"
"$apt_sync" --delete "${BASE_URL}/user" @ubuntu-lts main dep11,cnf,all,amd64,i386 "${BASE_PATH}/user"
echo "APT finished"

"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
2 changes: 1 addition & 1 deletion llvm-apt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://apt.llvm.org"}

export REPO_SIZE_FILE=/tmp/reposize.$RANDOM

for os in "bionic" "focal" "jammy" "buster" "bullseye" "bookworm"; do
for os in "focal" "jammy" "buster" "bullseye" "bookworm"; do
prefix=llvm-toolchain-$os
"$apt_sync" --delete "$BASE_URL/$os" $prefix,$prefix-9,$prefix-10,$prefix-11,$prefix-12,$prefix-13,$prefix-14,$prefix-15,$prefix-16,$prefix-17,$prefix-18 main amd64,arm64 "$BASE_PATH/$os"
done
Expand Down

0 comments on commit df3e175

Please sign in to comment.