diff options
author | Dan Callahan <danc@element.io> | 2021-10-21 23:50:21 +0100 |
---|---|---|
committer | Dan Callahan <danc@element.io> | 2021-10-22 23:08:54 +0100 |
commit | bab2bc844c4e81461c51a1066b2b0322326938d1 (patch) | |
tree | 4c455191a9adc89b17d78cda0e5756b9044a58dc /debian/matrix-synapse-py3.postinst | |
parent | Fix Shellcheck SC1001: Meaningless char escapes (diff) | |
download | synapse-bab2bc844c4e81461c51a1066b2b0322326938d1.tar.xz |
Fix Shellcheck SC1091: Can't follow file
Not following: (error message here) https://github.com/koalaman/shellcheck/wiki/SC1091 Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to '')
-rw-r--r-- | debian/matrix-synapse-py3.postinst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/debian/matrix-synapse-py3.postinst b/debian/matrix-synapse-py3.postinst index c0dd7e5534..a8dde1e082 100644 --- a/debian/matrix-synapse-py3.postinst +++ b/debian/matrix-synapse-py3.postinst @@ -1,5 +1,6 @@ #!/bin/sh -e +# shellcheck disable=SC1091 . /usr/share/debconf/confmodule CONFIGFILE_SERVERNAME="/etc/matrix-synapse/conf.d/server_name.yaml" |