cosmetic changes

This commit is contained in:
n 2021-02-20 21:16:40 +01:00
parent b77b885e75
commit a664c2beda
Signed by: n
GPG Key ID: E96086FC951DAE30
1 changed files with 2 additions and 2 deletions

View File

@ -102,10 +102,10 @@ The following miniamlistic script can be used to check for capsule availability
```
#!/bin/sh
TLS_CLIENT="/usr/local/bin/gnutls-cli -p 1965"
errorOutput=$(echo -n "gemini://$1/\r\n" | ${TLS_CLIENT} $1 2>&1 > /dev/null)
errorOutput=$(echo -n "gemini://$1/\r\n" | /path/to/gnutls-cli -p 1965 $1 2>&1 > /dev/null)
errorCode=$?
if [ $errorCode -gt 0 ]
then
echo "ERROR: ${errorOutput}"