Skip to content

Commit

Permalink
install debs in order seen
Browse files Browse the repository at this point in the history
  • Loading branch information
plowsof committed Sep 18, 2024
1 parent fb9b859 commit e2832e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,10 @@ for ((i=0; i<${#tuplets[@]}; i+=3)); do
echo "----------------------------------------"
done

# Install all .deb files
for deb_file in "$DEB_DIR"/*.deb; do
#Install debs in order seen from --print-uris
for ((i = 0; i < ${#tuplets[@]}; i+=3)); do
deb_file="${tuplets[i+1]}" # The second item (filename)

echo "Installing $deb_file"
dpkg -i "$deb_file"
done
Expand Down

0 comments on commit e2832e3

Please sign in to comment.