mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 02:35:06 +02:00
Fix letsencrypt auto source (#4093)
* Some shells don't like == * run build.py
This commit is contained in:
committed by
Peter Eckersley
parent
02615c2ac6
commit
6a55de45ba
@@ -25,7 +25,7 @@ BootstrapArchCommon() {
|
||||
fi
|
||||
|
||||
if [ "$missing" ]; then
|
||||
if [ "$QUIET" == 1]; then
|
||||
if [ "$QUIET" = 1]; then
|
||||
$SUDO pacman -S --needed $missing $noconfirm > /dev/null
|
||||
else
|
||||
$SUDO pacman -S --needed $missing $noconfirm
|
||||
|
||||
@@ -17,7 +17,7 @@ BootstrapDebCommon() {
|
||||
#
|
||||
# - Debian 6.0.10 "squeeze" (x64)
|
||||
|
||||
if [ "$QUIET" == 1 ]; then
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
QUIET_FLAG='-qq'
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
BootstrapFreeBsd() {
|
||||
if [ "$QUIET" == 1 ]; then
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
QUIET_FLAG="--quiet"
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
BootstrapMageiaCommon() {
|
||||
if [ "$QUIET" == 1 ]; then
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
QUIET_FLAG='--quiet'
|
||||
fi
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ BootstrapRpmCommon() {
|
||||
if [ "$ASSUME_YES" = 1 ]; then
|
||||
yes_flag="-y"
|
||||
fi
|
||||
if [ "$QUIET" == 1 ]; then
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
QUIET_FLAG='--quiet'
|
||||
fi
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ BootstrapSuseCommon() {
|
||||
install_flags="-l"
|
||||
fi
|
||||
|
||||
if [ "$QUIET" == 1 ]; then
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
QUIET_FLAG='-qq'
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user