Browse Source
Shellcheck fix
SYNO_Certificate gets set by _getdeployconf, so this may be an empty string but that's fine
pull/2935/head
Brian Hartvigsen
5 years ago
No known key found for this signature in database
GPG Key ID: 46EEA32081255BEB
1 changed files with
1 additions and
1 deletions
-
deploy/synology_dsm.sh
|
@ -68,7 +68,7 @@ synology_dsm_deploy() { |
|
|
|
|
|
|
|
|
# Get the certificate description, but don't save it until we verfiy it's real |
|
|
# Get the certificate description, but don't save it until we verfiy it's real |
|
|
_getdeployconf SYNO_Certificate |
|
|
_getdeployconf SYNO_Certificate |
|
|
_debug SYNO_Certificate "$SYNO_Certificate" |
|
|
|
|
|
|
|
|
_debug SYNO_Certificate "${SYNO_Certificate:-}" |
|
|
|
|
|
|
|
|
_base_url="$SYNO_Scheme://$SYNO_Hostname:$SYNO_Port" |
|
|
_base_url="$SYNO_Scheme://$SYNO_Hostname:$SYNO_Port" |
|
|
_debug _base_url "$_base_url" |
|
|
_debug _base_url "$_base_url" |
|
|