Update sync.sh

Missing bracket.
This commit is contained in:
Andrew Hurley 2021-08-07 17:24:27 +10:00 committed by GitHub
parent 1125bed571
commit ee88e35573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -18,11 +18,11 @@ if [ "x$SSLMATE_API_KEY_FILE" == "x" ]; then
else
if [ -f "$SSLMATE_API_KEY_FILE" }
if [ -f "$SSLMATE_API_KEY_FILE" } ]
SSLMATE_API_KEY=$(cat "$SSLMATE_API_KEY_FILE")
else
echo "Missing sslmate api key secret file: $SSLMATE_API_KEY_FILE"
exit 1
echo "Missing sslmate api key secret file: $SSLMATE_API_KEY_FILE"
exit 1
fi
fi