Skip to content

Commit

Permalink
feat(assets/bootstrap.sh): add dpkg option --force-unsafe-io
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish committed Oct 15, 2024
1 parent 31ff15f commit 50b06d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ length=${#PACKAGES[@]}
for p in "${PACKAGES[@]}"; do
count=$((count+1))
echo -e "\e[1m[$count/$length] Installing ${p}...\e[0m"
dpkg --force-depends --unpack "/var/cache/apt/archives/${p}"
dpkg --force-depends --force-unsafe-io --unpack "/var/cache/apt/archives/${p}"
sync
done
count_c=1;length_c=$(dpkg -l | grep -c 'iU')
function dpkg_progress () {
Expand Down

0 comments on commit 50b06d7

Please sign in to comment.