Skip to content

Commit 850ff8e

Browse files
authored
Merge pull request #17 from isac322/replace_pacman_force
Replace force option of pacman to overwrite
2 parents c957b39 + 4c399bc commit 850ff8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/bootstrap/archlinux/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pacman_install()
2727
[ -n "${packages}" ] || return 1
2828
(set -e
2929
#rm -f ${CHROOT_DIR}/var/lib/pacman/db.lck || true
30-
chroot_exec -u root pacman -Syq --force --noconfirm ${packages}
30+
chroot_exec -u root pacman -Syq --overwrite --noconfirm ${packages}
3131
rm -f "${CHROOT_DIR}"/var/cache/pacman/pkg/* || true
3232
exit 0)
3333
return $?

0 commit comments

Comments
 (0)