mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Remove quotes around $SUDO
This commit is contained in:
parent
9c7e99cbf5
commit
95efab93b7
2 changed files with 4 additions and 4 deletions
|
|
@ -307,10 +307,10 @@ BootstrapArchCommon() {
|
|||
pkg-config
|
||||
"
|
||||
|
||||
missing=$("$SUDO" pacman -T $deps)
|
||||
missing=$($SUDO pacman -T $deps)
|
||||
|
||||
if [ "$missing" ]; then
|
||||
"$SUDO" pacman -S --needed $missing
|
||||
$SUDO pacman -S --needed $missing
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@ BootstrapArchCommon() {
|
|||
pkg-config
|
||||
"
|
||||
|
||||
missing=$("$SUDO" pacman -T $deps)
|
||||
missing=$($SUDO pacman -T $deps)
|
||||
|
||||
if [ "$missing" ]; then
|
||||
"$SUDO" pacman -S --needed $missing
|
||||
$SUDO pacman -S --needed $missing
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue