summaryrefslogtreecommitdiff
path: root/debian/config.in
diff options
context:
space:
mode:
Diffstat (limited to 'debian/config.in')
-rw-r--r--debian/config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/config.in b/debian/config.in
index 6677eab..209bf3d 100644
--- a/debian/config.in
+++ b/debian/config.in
@@ -78,9 +78,9 @@ if test -d /usr/share/ca-certificates; then
else
CERTS_AVAILABLE="$CERTS_AVAILABLE, $crt"
fi
- if echo "$CERTS_DISABLED" | grep -F -q -x "$crt" > /dev/null 2>&1; then
+ if (echo "$CERTS_DISABLED" | grep -F -q -x "$crt") > /dev/null 2>&1; then
: # echo "I: ignore $crt"
- elif echo "$CERTS_TRUST" | grep -F -q -x "$crt" > /dev/null 2>&1; then
+ elif (echo "$CERTS_TRUST" | grep -F -q -x "$crt") > /dev/null 2>&1; then
# already trusted
if test "$CERTS_ENABLED" = ""; then
CERTS_ENABLED="$crt"