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 | |
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 'debian')
-rwxr-xr-x | debian/matrix-synapse-py3.config | 1 | ||||
-rw-r--r-- | debian/matrix-synapse-py3.postinst | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/debian/matrix-synapse-py3.config b/debian/matrix-synapse-py3.config index 37a781b3e8..3b2f469e15 100755 --- a/debian/matrix-synapse-py3.config +++ b/debian/matrix-synapse-py3.config @@ -2,6 +2,7 @@ set -e +# shellcheck disable=SC1091 . /usr/share/debconf/confmodule # try to update the debconf db according to whatever is in the config files 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" |