Skip to content

Commit

Permalink
save apt dependencies in ubuntu-24.04/Deps (#5372)
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya authored Aug 27, 2024
1 parent c226983 commit 8038c41
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/save-manifest-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ pkgs_ol7=()
pkgs_amazon2023=()
deps_rhel9=()
deps_amazon2023=()
deps_ubuntu2404=()

while read -r line || [ -n "$line" ]; do
if [ -z "$line" ]; then
Expand Down Expand Up @@ -425,9 +424,9 @@ while read -r line || [ -n "$line" ]; do
;;

apt)
mkdir -p "$OUT_DIR"/ubuntu-22.04 "$OUT_DIR"/ubuntu-20.04 "$OUT_DIR"/ubuntu-18.04 "$OUT_DIR"/ubuntu-16.04
mkdir -p "$OUT_DIR"/ubuntu-24.04 "$OUT_DIR"/ubuntu-22.04 "$OUT_DIR"/ubuntu-20.04 "$OUT_DIR"/ubuntu-18.04 "$OUT_DIR"/ubuntu-16.04
package=$(echo "$line" | awk '{ print $2 }')
deps_ubuntu2404+=("$package")
echo "$package" >> "$OUT_DIR"/ubuntu-24.04/Deps

docker rm -f ubuntu-2204-"$package" 2>/dev/null || true
docker run \
Expand Down

0 comments on commit 8038c41

Please sign in to comment.