1
0
mirror of synced 2025-02-17 18:59:21 +01:00

dist: Prevent already installed packages in ArchLinux and MSYS2.

Use --needed option with pacman to prevent it.
This commit is contained in:
Biswapriyo Nath 2020-12-09 14:21:36 +05:30
parent 4d87eefbe9
commit ee831fbcb6
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env sh #!/usr/bin/env sh
pacman -S \ pacman -S --needed \
glfw \ glfw \
file \ file \
openssl \ openssl \

View File

@ -1,6 +1,6 @@
#!/usr/bin/env sh #!/usr/bin/env sh
pacman -S \ pacman -S --needed \
mingw-w64-x86_64-gcc \ mingw-w64-x86_64-gcc \
mingw-w64-x86_64-cmake \ mingw-w64-x86_64-cmake \
mingw-w64-x86_64-make \ mingw-w64-x86_64-make \