mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-03-30 05:41:48 +02:00
Fix possibly broken syntax highlighting
The pattern ``` VAR="$(cmd '"')" ``` breaks syntax highlighting in some editors (e.g. gedit or jedit) due to the tripple double quotes.
This commit is contained in:
@@ -54,7 +54,7 @@ load_config() {
|
||||
WELLKNOWN="${BASEDIR}/.acme-challenges"
|
||||
PRIVATE_KEY_RENEW="no"
|
||||
KEY_ALGO=rsa
|
||||
OPENSSL_CNF="$(openssl version -d | cut -d'"' -f2)/openssl.cnf"
|
||||
OPENSSL_CNF="$(openssl version -d | cut -d\" -f2)/openssl.cnf"
|
||||
CONTACT_EMAIL=
|
||||
LOCKFILE="${BASEDIR}/lock"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user