Skip to content

Commit

Permalink
Install filesystem first to work around some missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Jul 18, 2020
1 parent ec7c5c7 commit a76eaa8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions make-msys2-installer
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ create_chroot_system() {
mkdir -p tmp

eval "pacman -Syu --root \"${_newmsys}\"" | tee -a ${_log}
# https://github.com/msys2/MSYS2-packages/issues/2049
eval "pacman -S filesystem --noconfirm --root \"${_newmsys}\"" | tee -a ${_log}
eval "pacman -S base --noconfirm --root \"${_newmsys}\"" | tee -a ${_log}
_result=$?
if [ "${_result}" -ne "0" ]; then
Expand Down

0 comments on commit a76eaa8

Please sign in to comment.