mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 03:02:15 +02:00
Don't exit without installing packages
This commit is contained in:
@@ -307,7 +307,8 @@ BootstrapArchCommon() {
|
|||||||
pkg-config
|
pkg-config
|
||||||
"
|
"
|
||||||
|
|
||||||
missing=$($SUDO pacman -T $deps)
|
# pacman -T exits with 127 if there are missing dependencies
|
||||||
|
missing=$($SUDO pacman -T $deps) || true
|
||||||
|
|
||||||
if [ "$missing" ]; then
|
if [ "$missing" ]; then
|
||||||
$SUDO pacman -S --needed $missing
|
$SUDO pacman -S --needed $missing
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ BootstrapArchCommon() {
|
|||||||
pkg-config
|
pkg-config
|
||||||
"
|
"
|
||||||
|
|
||||||
missing=$($SUDO pacman -T $deps)
|
# pacman -T exits with 127 if there are missing dependencies
|
||||||
|
missing=$($SUDO pacman -T $deps) || true
|
||||||
|
|
||||||
if [ "$missing" ]; then
|
if [ "$missing" ]; then
|
||||||
$SUDO pacman -S --needed $missing
|
$SUDO pacman -S --needed $missing
|
||||||
|
|||||||
Reference in New Issue
Block a user